@jetomit.bio/components 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +29 -3
- package/dist/index.d.mts +153 -1
- package/dist/index.d.ts +153 -1
- package/dist/index.js +297 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +297 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -55,7 +55,7 @@ Import components using standard ESM named imports:
|
|
|
55
55
|
```tsx
|
|
56
56
|
'use client';
|
|
57
57
|
|
|
58
|
-
import { RootButton, RootLogo, RootCommunityButton, RootCard } from '@jetomit.bio/components';
|
|
58
|
+
import { RootButton, RootLogo, RootCommunityButton, RootCard, RootIcon } from '@jetomit.bio/components';
|
|
59
59
|
|
|
60
60
|
export default function Home() {
|
|
61
61
|
return (
|
|
@@ -73,9 +73,10 @@ export default function Home() {
|
|
|
73
73
|
{/* 3. Localized Button Badge */}
|
|
74
74
|
<RootCommunityButton lang="sk" onClick={() => console.log('Slovak button clicked')} />
|
|
75
75
|
|
|
76
|
-
{/* 4. Button */}
|
|
76
|
+
{/* 4. Button with custom icon */}
|
|
77
77
|
<RootButton variant="primary">
|
|
78
|
-
|
|
78
|
+
<RootIcon name="Rocket" size={16} className="mr-2" />
|
|
79
|
+
Launch Server
|
|
79
80
|
</RootButton>
|
|
80
81
|
</div>
|
|
81
82
|
);
|
|
@@ -84,9 +85,34 @@ export default function Home() {
|
|
|
84
85
|
|
|
85
86
|
---
|
|
86
87
|
|
|
88
|
+
## 🎨 Icon Pack (`<RootIcon />`)
|
|
89
|
+
|
|
90
|
+
The library includes **144 custom vector icons** sorted into 12 categories: *actions, categories, favorites, files, form, formatting, media, media-controls, messaging, navigation, notifications, and users*.
|
|
91
|
+
|
|
92
|
+
### Generic Import
|
|
93
|
+
```tsx
|
|
94
|
+
import { RootIcon } from '@jetomit.bio/components';
|
|
95
|
+
|
|
96
|
+
// Render any icon by name, colorize with text classes, scale with size prop
|
|
97
|
+
<RootIcon name="Settings" size={24} className="text-root-online" />
|
|
98
|
+
<RootIcon name="Trophy" size={32} className="text-root-sudo" />
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
### Direct Named Imports
|
|
102
|
+
Alternatively, you can import specific icon components directly to benefit from full tree-shaking:
|
|
103
|
+
```tsx
|
|
104
|
+
import { SettingsIcon, RocketIcon } from '@jetomit.bio/components';
|
|
105
|
+
|
|
106
|
+
<SettingsIcon className="text-root-online h-6 w-6" />
|
|
107
|
+
<RocketIcon className="text-root-sudo h-8 w-8" />
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
---
|
|
111
|
+
|
|
87
112
|
## 📂 Components Included
|
|
88
113
|
|
|
89
114
|
- **`<RootButton />`**: Core button component supporting primary and secondary variants with glassmorphic glow.
|
|
90
115
|
- **`<RootLogo />`**: Scalable vector logo supporting 4 background/theme variants.
|
|
91
116
|
- **`<RootCommunityButton />`**: Localized PNG badge buttons supporting 12 languages (Slovak, English, Czech, German, etc.).
|
|
92
117
|
- **`<RootCard />`**: Glassmorphic panel supporting 8 semantic states (`online`, `offline`, `idle`, `sudo`, etc.).
|
|
118
|
+
- **`<RootIcon />`**: Vector icon system exposing 144 tree-shakable icons in 12 categories, fully styleable with sizes and colors.
|
package/dist/index.d.mts
CHANGED
|
@@ -31,4 +31,156 @@ interface RootCardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
31
31
|
}
|
|
32
32
|
declare const RootCard: React.ForwardRefExoticComponent<RootCardProps & React.RefAttributes<HTMLDivElement>>;
|
|
33
33
|
|
|
34
|
-
|
|
34
|
+
declare const AddIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
35
|
+
declare const CloseIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
36
|
+
declare const RemoveIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
37
|
+
declare const SearchIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
38
|
+
declare const PencilIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
39
|
+
declare const SettingsIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
40
|
+
declare const InfoIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
41
|
+
declare const LockIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
42
|
+
declare const GlobeIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
43
|
+
declare const ListIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
44
|
+
declare const OpenIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
45
|
+
declare const ShareIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
46
|
+
declare const PopoutIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
47
|
+
declare const RefreshIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
48
|
+
declare const DownArrowIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
49
|
+
declare const UpArrowIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
50
|
+
declare const EllipsisHorizontalIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
51
|
+
declare const EllipsisVerticalIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
52
|
+
declare const UserIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
53
|
+
declare const AddUserIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
54
|
+
declare const RemoveUserIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
55
|
+
declare const FavoriteIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
56
|
+
declare const FavoriteFilledIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
57
|
+
declare const PinIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
58
|
+
declare const PinFilledIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
59
|
+
declare const ImageIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
60
|
+
declare const NotificationBellIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
61
|
+
declare const CheckboxEnabledIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
62
|
+
declare const CheckboxDisabledIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
63
|
+
declare const CheckboxNeutralIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
64
|
+
declare const SelectedItemCheckboxIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
65
|
+
declare const FolderIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
66
|
+
declare const DownloadIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
67
|
+
declare const FileTooLargeIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
68
|
+
declare const FilesIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
69
|
+
declare const UploadIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
70
|
+
declare const BoldIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
71
|
+
declare const ItalicIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
72
|
+
declare const StrikethroughIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
73
|
+
declare const CodeIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
74
|
+
declare const CodeBlockIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
75
|
+
declare const LinkIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
76
|
+
declare const SendIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
77
|
+
declare const ReplyIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
78
|
+
declare const AttachmentIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
79
|
+
declare const EmojiIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
80
|
+
declare const GifIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
81
|
+
declare const MentionIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
82
|
+
declare const JumpIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
83
|
+
declare const MarkAsReadIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
84
|
+
declare const PlayIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
85
|
+
declare const PauseIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
86
|
+
declare const StopIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
87
|
+
declare const ReplayIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
88
|
+
declare const FullScreenIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
89
|
+
declare const ExitFullScreenIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
90
|
+
declare const VolumeHighIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
91
|
+
declare const VolumeLowIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
92
|
+
declare const VolumeOffIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
93
|
+
declare const CategoryArtIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
94
|
+
declare const CategoryCollaborationIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
95
|
+
declare const CategoryEducationIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
96
|
+
declare const CategoryEntertainmentIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
97
|
+
declare const CategoryGamesIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
98
|
+
declare const CategoryITIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
99
|
+
declare const CategoryMusicIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
100
|
+
declare const CategoryScienceIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
101
|
+
declare const BackArrowIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
102
|
+
declare const ForwardArrowIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
103
|
+
declare const ChevronLeftIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
104
|
+
declare const ChevronRightIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
105
|
+
declare const ChevronUpIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
106
|
+
declare const ChevronDownIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
107
|
+
declare const CollapseIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
108
|
+
declare const MenuIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
109
|
+
declare const HomeIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
110
|
+
declare const HomeFilledIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
111
|
+
declare const CheckCircleIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
112
|
+
declare const LogoutIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
113
|
+
declare const HelpIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
114
|
+
declare const SortIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
115
|
+
declare const MailIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
116
|
+
declare const CompassIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
117
|
+
declare const LightbulbIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
118
|
+
declare const PhoneIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
119
|
+
declare const PhoneDisconnectIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
120
|
+
declare const CameraIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
121
|
+
declare const CameraOffIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
122
|
+
declare const CameraOffAlertIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
123
|
+
declare const CameraFlipIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
124
|
+
declare const VideoCameraIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
125
|
+
declare const VideoCameraOffIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
126
|
+
declare const MicrophoneIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
127
|
+
declare const MicrophoneOffIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
128
|
+
declare const MicrophoneOffAlertIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
129
|
+
declare const HeadphonesIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
130
|
+
declare const HeadphonesOffIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
131
|
+
declare const HeadphonesOffAlertIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
132
|
+
declare const ScreenShareIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
133
|
+
declare const VoiceIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
134
|
+
declare const AddGroupIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
135
|
+
declare const AddImageIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
136
|
+
declare const FolderOpenIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
137
|
+
declare const RecentFilesIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
138
|
+
declare const ProhibitedIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
139
|
+
declare const ColorSwatchIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
140
|
+
declare const CloudIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
141
|
+
declare const CloudOffIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
142
|
+
declare const IntegrationIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
143
|
+
declare const RocketIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
144
|
+
declare const SignalIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
145
|
+
declare const SpeakerIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
146
|
+
declare const TrophyIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
147
|
+
declare const EyeIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
148
|
+
declare const EyeOffIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
149
|
+
declare const DeleteIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
150
|
+
declare const BookmarkIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
151
|
+
declare const CheckmarkIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
152
|
+
declare const HeartIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
153
|
+
declare const HeartFilledIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
154
|
+
declare const ClockIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
155
|
+
declare const UndockIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
156
|
+
declare const EyeFilledIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
157
|
+
declare const EyeOffOutlinedIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
158
|
+
declare const NotificationActiveIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
159
|
+
declare const NotificationOffIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
160
|
+
declare const NotificationOffOutlinedIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
161
|
+
declare const NotificationAddIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
162
|
+
declare const NotificationFilledIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
163
|
+
declare const UserFilledIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
164
|
+
declare const UsersIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
165
|
+
declare const UsersFilledIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
166
|
+
declare const ChatIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
167
|
+
declare const MessageIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
168
|
+
declare const DirectMessageIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
169
|
+
declare const ConversationIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
170
|
+
declare const AttachIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
171
|
+
declare const AddReactionIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
172
|
+
declare const ErrorIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
173
|
+
declare const GridViewIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
174
|
+
declare const ListViewIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
175
|
+
declare const PlaneIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
176
|
+
declare const BagIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
177
|
+
declare const FlagIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
178
|
+
type RootIconName = 'Add' | 'Close' | 'Remove' | 'Search' | 'Pencil' | 'Settings' | 'Info' | 'Lock' | 'Globe' | 'List' | 'Open' | 'Share' | 'Popout' | 'Refresh' | 'DownArrow' | 'UpArrow' | 'EllipsisHorizontal' | 'EllipsisVertical' | 'User' | 'AddUser' | 'RemoveUser' | 'Favorite' | 'FavoriteFilled' | 'Pin' | 'PinFilled' | 'Image' | 'NotificationBell' | 'CheckboxEnabled' | 'CheckboxDisabled' | 'CheckboxNeutral' | 'SelectedItemCheckbox' | 'Folder' | 'Download' | 'FileTooLarge' | 'Files' | 'Upload' | 'Bold' | 'Italic' | 'Strikethrough' | 'Code' | 'CodeBlock' | 'Link' | 'Send' | 'Reply' | 'Attachment' | 'Emoji' | 'Gif' | 'Mention' | 'Jump' | 'MarkAsRead' | 'Play' | 'Pause' | 'Stop' | 'Replay' | 'FullScreen' | 'ExitFullScreen' | 'VolumeHigh' | 'VolumeLow' | 'VolumeOff' | 'CategoryArt' | 'CategoryCollaboration' | 'CategoryEducation' | 'CategoryEntertainment' | 'CategoryGames' | 'CategoryIT' | 'CategoryMusic' | 'CategoryScience' | 'BackArrow' | 'ForwardArrow' | 'ChevronLeft' | 'ChevronRight' | 'ChevronUp' | 'ChevronDown' | 'Collapse' | 'Menu' | 'Home' | 'HomeFilled' | 'CheckCircle' | 'Logout' | 'Help' | 'Sort' | 'Mail' | 'Compass' | 'Lightbulb' | 'Phone' | 'PhoneDisconnect' | 'Camera' | 'CameraOff' | 'CameraOffAlert' | 'CameraFlip' | 'VideoCamera' | 'VideoCameraOff' | 'Microphone' | 'MicrophoneOff' | 'MicrophoneOffAlert' | 'Headphones' | 'HeadphonesOff' | 'HeadphonesOffAlert' | 'ScreenShare' | 'Voice' | 'AddGroup' | 'AddImage' | 'FolderOpen' | 'RecentFiles' | 'Prohibited' | 'ColorSwatch' | 'Cloud' | 'CloudOff' | 'Integration' | 'Rocket' | 'Signal' | 'Speaker' | 'Trophy' | 'Eye' | 'EyeOff' | 'Delete' | 'Bookmark' | 'Checkmark' | 'Heart' | 'HeartFilled' | 'Clock' | 'Undock' | 'EyeFilled' | 'EyeOffOutlined' | 'NotificationActive' | 'NotificationOff' | 'NotificationOffOutlined' | 'NotificationAdd' | 'NotificationFilled' | 'UserFilled' | 'Users' | 'UsersFilled' | 'Chat' | 'Message' | 'DirectMessage' | 'Conversation' | 'Attach' | 'AddReaction' | 'Error' | 'GridView' | 'ListView' | 'Plane' | 'Bag' | 'Flag';
|
|
179
|
+
declare const RootIcons: Record<RootIconName, React.ForwardRefExoticComponent<React.SVGProps<SVGSVGElement> & React.RefAttributes<SVGSVGElement>>>;
|
|
180
|
+
interface RootIconProps extends React.SVGProps<SVGSVGElement> {
|
|
181
|
+
name: RootIconName;
|
|
182
|
+
size?: number | string;
|
|
183
|
+
}
|
|
184
|
+
declare const RootIcon: React.ForwardRefExoticComponent<Omit<RootIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
185
|
+
|
|
186
|
+
export { AddGroupIcon, AddIcon, AddImageIcon, AddReactionIcon, AddUserIcon, AttachIcon, AttachmentIcon, BackArrowIcon, BagIcon, BoldIcon, BookmarkIcon, CameraFlipIcon, CameraIcon, CameraOffAlertIcon, CameraOffIcon, CategoryArtIcon, CategoryCollaborationIcon, CategoryEducationIcon, CategoryEntertainmentIcon, CategoryGamesIcon, CategoryITIcon, CategoryMusicIcon, CategoryScienceIcon, ChatIcon, CheckCircleIcon, CheckboxDisabledIcon, CheckboxEnabledIcon, CheckboxNeutralIcon, CheckmarkIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ClockIcon, CloseIcon, CloudIcon, CloudOffIcon, CodeBlockIcon, CodeIcon, CollapseIcon, ColorSwatchIcon, CompassIcon, ConversationIcon, DeleteIcon, DirectMessageIcon, DownArrowIcon, DownloadIcon, EllipsisHorizontalIcon, EllipsisVerticalIcon, EmojiIcon, ErrorIcon, ExitFullScreenIcon, EyeFilledIcon, EyeIcon, EyeOffIcon, EyeOffOutlinedIcon, FavoriteFilledIcon, FavoriteIcon, FileTooLargeIcon, FilesIcon, FlagIcon, FolderIcon, FolderOpenIcon, ForwardArrowIcon, FullScreenIcon, GifIcon, GlobeIcon, GridViewIcon, HeadphonesIcon, HeadphonesOffAlertIcon, HeadphonesOffIcon, HeartFilledIcon, HeartIcon, HelpIcon, HomeFilledIcon, HomeIcon, ImageIcon, InfoIcon, IntegrationIcon, ItalicIcon, JumpIcon, LightbulbIcon, LinkIcon, ListIcon, ListViewIcon, LockIcon, LogoutIcon, MailIcon, MarkAsReadIcon, MentionIcon, MenuIcon, MessageIcon, MicrophoneIcon, MicrophoneOffAlertIcon, MicrophoneOffIcon, NotificationActiveIcon, NotificationAddIcon, NotificationBellIcon, NotificationFilledIcon, NotificationOffIcon, NotificationOffOutlinedIcon, OpenIcon, PauseIcon, PencilIcon, PhoneDisconnectIcon, PhoneIcon, PinFilledIcon, PinIcon, PlaneIcon, PlayIcon, PopoutIcon, ProhibitedIcon, RecentFilesIcon, RefreshIcon, RemoveIcon, RemoveUserIcon, ReplayIcon, ReplyIcon, RocketIcon, RootButton, type RootButtonProps, RootCard, type RootCardProps, type RootCardStatus, RootCommunityButton, type RootCommunityButtonProps, RootIcon, type RootIconName, type RootIconProps, RootIcons, type RootLanguage, RootLogo, type RootLogoProps, ScreenShareIcon, SearchIcon, SelectedItemCheckboxIcon, SendIcon, SettingsIcon, ShareIcon, SignalIcon, SortIcon, SpeakerIcon, StopIcon, StrikethroughIcon, TrophyIcon, UndockIcon, UpArrowIcon, UploadIcon, UserFilledIcon, UserIcon, UsersFilledIcon, UsersIcon, VideoCameraIcon, VideoCameraOffIcon, VoiceIcon, VolumeHighIcon, VolumeLowIcon, VolumeOffIcon };
|
package/dist/index.d.ts
CHANGED
|
@@ -31,4 +31,156 @@ interface RootCardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
31
31
|
}
|
|
32
32
|
declare const RootCard: React.ForwardRefExoticComponent<RootCardProps & React.RefAttributes<HTMLDivElement>>;
|
|
33
33
|
|
|
34
|
-
|
|
34
|
+
declare const AddIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
35
|
+
declare const CloseIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
36
|
+
declare const RemoveIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
37
|
+
declare const SearchIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
38
|
+
declare const PencilIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
39
|
+
declare const SettingsIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
40
|
+
declare const InfoIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
41
|
+
declare const LockIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
42
|
+
declare const GlobeIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
43
|
+
declare const ListIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
44
|
+
declare const OpenIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
45
|
+
declare const ShareIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
46
|
+
declare const PopoutIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
47
|
+
declare const RefreshIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
48
|
+
declare const DownArrowIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
49
|
+
declare const UpArrowIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
50
|
+
declare const EllipsisHorizontalIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
51
|
+
declare const EllipsisVerticalIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
52
|
+
declare const UserIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
53
|
+
declare const AddUserIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
54
|
+
declare const RemoveUserIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
55
|
+
declare const FavoriteIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
56
|
+
declare const FavoriteFilledIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
57
|
+
declare const PinIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
58
|
+
declare const PinFilledIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
59
|
+
declare const ImageIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
60
|
+
declare const NotificationBellIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
61
|
+
declare const CheckboxEnabledIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
62
|
+
declare const CheckboxDisabledIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
63
|
+
declare const CheckboxNeutralIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
64
|
+
declare const SelectedItemCheckboxIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
65
|
+
declare const FolderIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
66
|
+
declare const DownloadIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
67
|
+
declare const FileTooLargeIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
68
|
+
declare const FilesIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
69
|
+
declare const UploadIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
70
|
+
declare const BoldIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
71
|
+
declare const ItalicIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
72
|
+
declare const StrikethroughIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
73
|
+
declare const CodeIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
74
|
+
declare const CodeBlockIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
75
|
+
declare const LinkIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
76
|
+
declare const SendIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
77
|
+
declare const ReplyIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
78
|
+
declare const AttachmentIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
79
|
+
declare const EmojiIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
80
|
+
declare const GifIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
81
|
+
declare const MentionIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
82
|
+
declare const JumpIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
83
|
+
declare const MarkAsReadIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
84
|
+
declare const PlayIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
85
|
+
declare const PauseIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
86
|
+
declare const StopIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
87
|
+
declare const ReplayIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
88
|
+
declare const FullScreenIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
89
|
+
declare const ExitFullScreenIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
90
|
+
declare const VolumeHighIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
91
|
+
declare const VolumeLowIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
92
|
+
declare const VolumeOffIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
93
|
+
declare const CategoryArtIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
94
|
+
declare const CategoryCollaborationIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
95
|
+
declare const CategoryEducationIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
96
|
+
declare const CategoryEntertainmentIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
97
|
+
declare const CategoryGamesIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
98
|
+
declare const CategoryITIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
99
|
+
declare const CategoryMusicIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
100
|
+
declare const CategoryScienceIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
101
|
+
declare const BackArrowIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
102
|
+
declare const ForwardArrowIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
103
|
+
declare const ChevronLeftIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
104
|
+
declare const ChevronRightIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
105
|
+
declare const ChevronUpIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
106
|
+
declare const ChevronDownIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
107
|
+
declare const CollapseIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
108
|
+
declare const MenuIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
109
|
+
declare const HomeIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
110
|
+
declare const HomeFilledIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
111
|
+
declare const CheckCircleIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
112
|
+
declare const LogoutIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
113
|
+
declare const HelpIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
114
|
+
declare const SortIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
115
|
+
declare const MailIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
116
|
+
declare const CompassIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
117
|
+
declare const LightbulbIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
118
|
+
declare const PhoneIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
119
|
+
declare const PhoneDisconnectIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
120
|
+
declare const CameraIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
121
|
+
declare const CameraOffIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
122
|
+
declare const CameraOffAlertIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
123
|
+
declare const CameraFlipIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
124
|
+
declare const VideoCameraIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
125
|
+
declare const VideoCameraOffIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
126
|
+
declare const MicrophoneIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
127
|
+
declare const MicrophoneOffIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
128
|
+
declare const MicrophoneOffAlertIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
129
|
+
declare const HeadphonesIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
130
|
+
declare const HeadphonesOffIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
131
|
+
declare const HeadphonesOffAlertIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
132
|
+
declare const ScreenShareIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
133
|
+
declare const VoiceIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
134
|
+
declare const AddGroupIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
135
|
+
declare const AddImageIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
136
|
+
declare const FolderOpenIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
137
|
+
declare const RecentFilesIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
138
|
+
declare const ProhibitedIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
139
|
+
declare const ColorSwatchIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
140
|
+
declare const CloudIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
141
|
+
declare const CloudOffIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
142
|
+
declare const IntegrationIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
143
|
+
declare const RocketIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
144
|
+
declare const SignalIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
145
|
+
declare const SpeakerIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
146
|
+
declare const TrophyIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
147
|
+
declare const EyeIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
148
|
+
declare const EyeOffIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
149
|
+
declare const DeleteIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
150
|
+
declare const BookmarkIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
151
|
+
declare const CheckmarkIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
152
|
+
declare const HeartIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
153
|
+
declare const HeartFilledIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
154
|
+
declare const ClockIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
155
|
+
declare const UndockIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
156
|
+
declare const EyeFilledIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
157
|
+
declare const EyeOffOutlinedIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
158
|
+
declare const NotificationActiveIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
159
|
+
declare const NotificationOffIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
160
|
+
declare const NotificationOffOutlinedIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
161
|
+
declare const NotificationAddIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
162
|
+
declare const NotificationFilledIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
163
|
+
declare const UserFilledIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
164
|
+
declare const UsersIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
165
|
+
declare const UsersFilledIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
166
|
+
declare const ChatIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
167
|
+
declare const MessageIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
168
|
+
declare const DirectMessageIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
169
|
+
declare const ConversationIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
170
|
+
declare const AttachIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
171
|
+
declare const AddReactionIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
172
|
+
declare const ErrorIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
173
|
+
declare const GridViewIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
174
|
+
declare const ListViewIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
175
|
+
declare const PlaneIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
176
|
+
declare const BagIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
177
|
+
declare const FlagIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
178
|
+
type RootIconName = 'Add' | 'Close' | 'Remove' | 'Search' | 'Pencil' | 'Settings' | 'Info' | 'Lock' | 'Globe' | 'List' | 'Open' | 'Share' | 'Popout' | 'Refresh' | 'DownArrow' | 'UpArrow' | 'EllipsisHorizontal' | 'EllipsisVertical' | 'User' | 'AddUser' | 'RemoveUser' | 'Favorite' | 'FavoriteFilled' | 'Pin' | 'PinFilled' | 'Image' | 'NotificationBell' | 'CheckboxEnabled' | 'CheckboxDisabled' | 'CheckboxNeutral' | 'SelectedItemCheckbox' | 'Folder' | 'Download' | 'FileTooLarge' | 'Files' | 'Upload' | 'Bold' | 'Italic' | 'Strikethrough' | 'Code' | 'CodeBlock' | 'Link' | 'Send' | 'Reply' | 'Attachment' | 'Emoji' | 'Gif' | 'Mention' | 'Jump' | 'MarkAsRead' | 'Play' | 'Pause' | 'Stop' | 'Replay' | 'FullScreen' | 'ExitFullScreen' | 'VolumeHigh' | 'VolumeLow' | 'VolumeOff' | 'CategoryArt' | 'CategoryCollaboration' | 'CategoryEducation' | 'CategoryEntertainment' | 'CategoryGames' | 'CategoryIT' | 'CategoryMusic' | 'CategoryScience' | 'BackArrow' | 'ForwardArrow' | 'ChevronLeft' | 'ChevronRight' | 'ChevronUp' | 'ChevronDown' | 'Collapse' | 'Menu' | 'Home' | 'HomeFilled' | 'CheckCircle' | 'Logout' | 'Help' | 'Sort' | 'Mail' | 'Compass' | 'Lightbulb' | 'Phone' | 'PhoneDisconnect' | 'Camera' | 'CameraOff' | 'CameraOffAlert' | 'CameraFlip' | 'VideoCamera' | 'VideoCameraOff' | 'Microphone' | 'MicrophoneOff' | 'MicrophoneOffAlert' | 'Headphones' | 'HeadphonesOff' | 'HeadphonesOffAlert' | 'ScreenShare' | 'Voice' | 'AddGroup' | 'AddImage' | 'FolderOpen' | 'RecentFiles' | 'Prohibited' | 'ColorSwatch' | 'Cloud' | 'CloudOff' | 'Integration' | 'Rocket' | 'Signal' | 'Speaker' | 'Trophy' | 'Eye' | 'EyeOff' | 'Delete' | 'Bookmark' | 'Checkmark' | 'Heart' | 'HeartFilled' | 'Clock' | 'Undock' | 'EyeFilled' | 'EyeOffOutlined' | 'NotificationActive' | 'NotificationOff' | 'NotificationOffOutlined' | 'NotificationAdd' | 'NotificationFilled' | 'UserFilled' | 'Users' | 'UsersFilled' | 'Chat' | 'Message' | 'DirectMessage' | 'Conversation' | 'Attach' | 'AddReaction' | 'Error' | 'GridView' | 'ListView' | 'Plane' | 'Bag' | 'Flag';
|
|
179
|
+
declare const RootIcons: Record<RootIconName, React.ForwardRefExoticComponent<React.SVGProps<SVGSVGElement> & React.RefAttributes<SVGSVGElement>>>;
|
|
180
|
+
interface RootIconProps extends React.SVGProps<SVGSVGElement> {
|
|
181
|
+
name: RootIconName;
|
|
182
|
+
size?: number | string;
|
|
183
|
+
}
|
|
184
|
+
declare const RootIcon: React.ForwardRefExoticComponent<Omit<RootIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
185
|
+
|
|
186
|
+
export { AddGroupIcon, AddIcon, AddImageIcon, AddReactionIcon, AddUserIcon, AttachIcon, AttachmentIcon, BackArrowIcon, BagIcon, BoldIcon, BookmarkIcon, CameraFlipIcon, CameraIcon, CameraOffAlertIcon, CameraOffIcon, CategoryArtIcon, CategoryCollaborationIcon, CategoryEducationIcon, CategoryEntertainmentIcon, CategoryGamesIcon, CategoryITIcon, CategoryMusicIcon, CategoryScienceIcon, ChatIcon, CheckCircleIcon, CheckboxDisabledIcon, CheckboxEnabledIcon, CheckboxNeutralIcon, CheckmarkIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ClockIcon, CloseIcon, CloudIcon, CloudOffIcon, CodeBlockIcon, CodeIcon, CollapseIcon, ColorSwatchIcon, CompassIcon, ConversationIcon, DeleteIcon, DirectMessageIcon, DownArrowIcon, DownloadIcon, EllipsisHorizontalIcon, EllipsisVerticalIcon, EmojiIcon, ErrorIcon, ExitFullScreenIcon, EyeFilledIcon, EyeIcon, EyeOffIcon, EyeOffOutlinedIcon, FavoriteFilledIcon, FavoriteIcon, FileTooLargeIcon, FilesIcon, FlagIcon, FolderIcon, FolderOpenIcon, ForwardArrowIcon, FullScreenIcon, GifIcon, GlobeIcon, GridViewIcon, HeadphonesIcon, HeadphonesOffAlertIcon, HeadphonesOffIcon, HeartFilledIcon, HeartIcon, HelpIcon, HomeFilledIcon, HomeIcon, ImageIcon, InfoIcon, IntegrationIcon, ItalicIcon, JumpIcon, LightbulbIcon, LinkIcon, ListIcon, ListViewIcon, LockIcon, LogoutIcon, MailIcon, MarkAsReadIcon, MentionIcon, MenuIcon, MessageIcon, MicrophoneIcon, MicrophoneOffAlertIcon, MicrophoneOffIcon, NotificationActiveIcon, NotificationAddIcon, NotificationBellIcon, NotificationFilledIcon, NotificationOffIcon, NotificationOffOutlinedIcon, OpenIcon, PauseIcon, PencilIcon, PhoneDisconnectIcon, PhoneIcon, PinFilledIcon, PinIcon, PlaneIcon, PlayIcon, PopoutIcon, ProhibitedIcon, RecentFilesIcon, RefreshIcon, RemoveIcon, RemoveUserIcon, ReplayIcon, ReplyIcon, RocketIcon, RootButton, type RootButtonProps, RootCard, type RootCardProps, type RootCardStatus, RootCommunityButton, type RootCommunityButtonProps, RootIcon, type RootIconName, type RootIconProps, RootIcons, type RootLanguage, RootLogo, type RootLogoProps, ScreenShareIcon, SearchIcon, SelectedItemCheckboxIcon, SendIcon, SettingsIcon, ShareIcon, SignalIcon, SortIcon, SpeakerIcon, StopIcon, StrikethroughIcon, TrophyIcon, UndockIcon, UpArrowIcon, UploadIcon, UserFilledIcon, UserIcon, UsersFilledIcon, UsersIcon, VideoCameraIcon, VideoCameraOffIcon, VoiceIcon, VolumeHighIcon, VolumeLowIcon, VolumeOffIcon };
|