@mirohq/design-system-icons 0.12.4 → 0.13.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/dist/main.js +172 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +165 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +442 -418
- package/package.json +5 -5
- package/react/arrows-down-up.tsx +30 -0
- package/react/badge.tsx +31 -0
- package/react/index.ts +8 -0
- package/react/megaphone.tsx +31 -0
- package/react/moon.tsx +30 -0
- package/react/rocket.tsx +31 -0
- package/react/switch.tsx +32 -0
- package/react/toolbar.tsx +31 -0
- package/react/tooltip.tsx +31 -0
- package/svg/24/arrows-down-up.svg +2 -0
- package/svg/24/badge.svg +2 -0
- package/svg/24/megaphone.svg +2 -0
- package/svg/24/moon.svg +2 -0
- package/svg/24/rocket.svg +2 -0
- package/svg/24/switch.svg +2 -0
- package/svg/24/toolbar.svg +2 -0
- package/svg/24/tooltip.svg +2 -0
- package/svg/meta.json +44 -0
package/dist/types.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
2
|
import { ComponentPropsWithRef, ForwardRefExoticComponent, RefAttributes } from 'react';
|
|
3
|
+
import * as _mirohq_design_system_primitive from '@mirohq/design-system-primitive';
|
|
3
4
|
import * as _mirohq_design_system_stitches from '@mirohq/design-system-stitches';
|
|
4
5
|
import * as _stitches_react_types_css_util from '@stitches/react/types/css-util';
|
|
5
|
-
import * as _mirohq_design_system_primitive from '@mirohq/design-system-primitive';
|
|
6
6
|
import * as _stitches_react_types_styled_component from '@stitches/react/types/styled-component';
|
|
7
7
|
|
|
8
8
|
declare const StyledIcon: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
@@ -11,434 +11,442 @@ declare const StyledIcon: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
11
11
|
}, "color" | "size"> & _stitches_react_types_styled_component.TransformProps<{
|
|
12
12
|
size?: "small" | "medium" | "large" | undefined;
|
|
13
13
|
color?: "background-neutrals" | "background-neutrals-body" | "background-neutrals-container" | "background-neutrals-inverted" | "background-neutrals-inverted-subtle" | "background-neutrals-subtle" | "background-neutrals-subtle-hover" | "background-neutrals-subtle-active" | "background-neutrals-disabled" | "background-neutrals-controls-disabled" | "background-neutrals-scrolls" | "background-neutrals-inactive" | "background-neutrals-inactive-hover" | "background-primary-prominent" | "background-primary-prominent-hover" | "background-primary-prominent-active" | "background-primary-prominent-selected" | "background-primary-subtle" | "background-primary-subtle-hover" | "background-primary-subtle-active" | "background-primary-subtle-selected" | "background-danger-prominent" | "background-danger-prominent-hover" | "background-danger-prominent-active" | "background-danger" | "background-danger-hover" | "background-success" | "background-warning-subtle" | "background-warning-prominent" | "text-neutrals-inverted" | "text-neutrals" | "text-neutrals-subtle" | "text-neutrals-placeholder-only" | "text-neutrals-placeholder" | "text-neutrals-disabled" | "text-primary-inverted" | "text-primary" | "text-primary-hover" | "text-primary-active" | "text-primary-selected" | "text-primary-inverted-subtle" | "text-danger-inverted" | "text-danger" | "text-danger-hover" | "text-danger-active" | "text-success" | "text-warning" | "icon-neutrals-inverted" | "icon-neutrals" | "icon-neutrals-with-text" | "icon-neutrals-subtle" | "icon-neutrals-disabled" | "icon-neutrals-search" | "icon-neutrals-inactive" | "icon-neutrals-inactive-hover" | "icon-primary-inverted" | "icon-primary" | "icon-primary-hover" | "icon-primary-active" | "icon-primary-selected" | "icon-danger-inverted" | "icon-danger" | "icon-danger-hover" | "icon-danger-active" | "icon-success-inverted" | "icon-success" | "icon-warning" | "border-focus-outer" | "border-focus-middle" | "border-focus-inner" | "border-neutrals" | "border-neutrals-hover" | "border-neutrals-active" | "border-neutrals-disabled" | "border-neutrals-controls" | "border-neutrals-controls-disabled" | "border-neutrals-subtle" | "border-neutrals-inverted" | "border-primary" | "border-primary-hover" | "border-primary-active" | "border-primary-inverted" | "border-danger" | "border-success" | "border-warning" | "blue-100" | "blue-200" | "blue-300" | "blue-400" | "blue-500" | "blue-600" | "blue-700" | "blue-800" | "blue-900" | "blue-1000" | "gray-100" | "gray-200" | "gray-300" | "gray-400" | "gray-500" | "gray-600" | "gray-700" | "gray-800" | "gray-900" | "indigo-100" | "indigo-200" | "indigo-300" | "indigo-400" | "indigo-500" | "indigo-600" | "indigo-700" | "indigo-800" | "indigo-900" | "red-100" | "red-200" | "red-300" | "red-400" | "red-500" | "red-600" | "red-700" | "red-800" | "red-900" | "yellow-100" | "yellow-200" | "yellow-300" | "yellow-400" | "yellow-500" | "yellow-600" | "yellow-700" | "yellow-800" | "yellow-900" | "green-100" | "green-200" | "green-300" | "green-400" | "green-500" | "green-600" | "green-700" | "green-800" | "green-900" | "black" | "white" | "transparent" | undefined;
|
|
14
|
-
}, {}> & _mirohq_design_system_stitches.
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
readonly 'blue-400': any;
|
|
26
|
-
readonly 'blue-500': any;
|
|
27
|
-
readonly 'blue-600': any;
|
|
28
|
-
readonly 'blue-700': any;
|
|
29
|
-
readonly 'blue-800': any;
|
|
30
|
-
readonly 'blue-900': any;
|
|
31
|
-
readonly 'blue-1000': any;
|
|
32
|
-
readonly 'gray-100': any;
|
|
33
|
-
readonly 'gray-200': any;
|
|
34
|
-
readonly 'gray-300': any;
|
|
35
|
-
readonly 'gray-400': any;
|
|
36
|
-
readonly 'gray-500': any;
|
|
37
|
-
readonly 'gray-600': any;
|
|
38
|
-
readonly 'gray-700': any;
|
|
39
|
-
readonly 'gray-800': any;
|
|
40
|
-
readonly 'gray-900': any;
|
|
41
|
-
readonly 'indigo-100': any;
|
|
42
|
-
readonly 'indigo-200': any;
|
|
43
|
-
readonly 'indigo-300': any;
|
|
44
|
-
readonly 'indigo-400': any;
|
|
45
|
-
readonly 'indigo-500': any;
|
|
46
|
-
readonly 'indigo-600': any;
|
|
47
|
-
readonly 'indigo-700': any;
|
|
48
|
-
readonly 'indigo-800': any;
|
|
49
|
-
readonly 'indigo-900': any;
|
|
50
|
-
readonly 'red-100': any;
|
|
51
|
-
readonly 'red-200': any;
|
|
52
|
-
readonly 'red-300': any;
|
|
53
|
-
readonly 'red-400': any;
|
|
54
|
-
readonly 'red-500': any;
|
|
55
|
-
readonly 'red-600': any;
|
|
56
|
-
readonly 'red-700': any;
|
|
57
|
-
readonly 'red-800': any;
|
|
58
|
-
readonly 'red-900': any;
|
|
59
|
-
readonly 'yellow-100': any;
|
|
60
|
-
readonly 'yellow-200': any;
|
|
61
|
-
readonly 'yellow-300': any;
|
|
62
|
-
readonly 'yellow-400': any;
|
|
63
|
-
readonly 'yellow-500': any;
|
|
64
|
-
readonly 'yellow-600': any;
|
|
65
|
-
readonly 'yellow-700': any;
|
|
66
|
-
readonly 'yellow-800': any;
|
|
67
|
-
readonly 'yellow-900': any;
|
|
68
|
-
readonly 'green-100': any;
|
|
69
|
-
readonly 'green-200': any;
|
|
70
|
-
readonly 'green-300': any;
|
|
71
|
-
readonly 'green-400': any;
|
|
72
|
-
readonly 'green-500': any;
|
|
73
|
-
readonly 'green-600': any;
|
|
74
|
-
readonly 'green-700': any;
|
|
75
|
-
readonly 'green-800': any;
|
|
76
|
-
readonly 'green-900': any;
|
|
77
|
-
readonly black: any;
|
|
78
|
-
readonly white: any;
|
|
79
|
-
readonly transparent: any;
|
|
80
|
-
readonly 'background-neutrals'?: any;
|
|
81
|
-
readonly 'background-neutrals-body'?: any;
|
|
82
|
-
readonly 'background-neutrals-container'?: any;
|
|
83
|
-
readonly 'background-neutrals-inverted'?: any;
|
|
84
|
-
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
85
|
-
readonly 'background-neutrals-subtle'?: any;
|
|
86
|
-
readonly 'background-neutrals-subtle-hover'?: any;
|
|
87
|
-
readonly 'background-neutrals-subtle-active'?: any;
|
|
88
|
-
readonly 'background-neutrals-disabled'?: any;
|
|
89
|
-
readonly 'background-neutrals-controls-disabled'?: any;
|
|
90
|
-
readonly 'background-neutrals-scrolls'?: any;
|
|
91
|
-
readonly 'background-neutrals-inactive'?: any;
|
|
92
|
-
readonly 'background-neutrals-inactive-hover'?: any;
|
|
93
|
-
readonly 'background-primary-prominent'?: any;
|
|
94
|
-
readonly 'background-primary-prominent-hover'?: any;
|
|
95
|
-
readonly 'background-primary-prominent-active'?: any;
|
|
96
|
-
readonly 'background-primary-prominent-selected'?: any;
|
|
97
|
-
readonly 'background-primary-subtle'?: any;
|
|
98
|
-
readonly 'background-primary-subtle-hover'?: any;
|
|
99
|
-
readonly 'background-primary-subtle-active'?: any;
|
|
100
|
-
readonly 'background-primary-subtle-selected'?: any;
|
|
101
|
-
readonly 'background-danger-prominent'?: any;
|
|
102
|
-
readonly 'background-danger-prominent-hover'?: any;
|
|
103
|
-
readonly 'background-danger-prominent-active'?: any;
|
|
104
|
-
readonly 'background-danger'?: any;
|
|
105
|
-
readonly 'background-danger-hover'?: any;
|
|
106
|
-
readonly 'background-success'?: any;
|
|
107
|
-
readonly 'background-warning-subtle'?: any;
|
|
108
|
-
readonly 'background-warning-prominent'?: any;
|
|
109
|
-
readonly 'text-neutrals-inverted'?: any;
|
|
110
|
-
readonly 'text-neutrals'?: any;
|
|
111
|
-
readonly 'text-neutrals-subtle'?: any;
|
|
112
|
-
readonly 'text-neutrals-placeholder-only'?: any;
|
|
113
|
-
readonly 'text-neutrals-placeholder'?: any;
|
|
114
|
-
readonly 'text-neutrals-disabled'?: any;
|
|
115
|
-
readonly 'text-primary-inverted'?: any;
|
|
116
|
-
readonly 'text-primary'?: any;
|
|
117
|
-
readonly 'text-primary-hover'?: any;
|
|
118
|
-
readonly 'text-primary-active'?: any;
|
|
119
|
-
readonly 'text-primary-selected'?: any;
|
|
120
|
-
readonly 'text-primary-inverted-subtle'?: any;
|
|
121
|
-
readonly 'text-danger-inverted'?: any;
|
|
122
|
-
readonly 'text-danger'?: any;
|
|
123
|
-
readonly 'text-danger-hover'?: any;
|
|
124
|
-
readonly 'text-danger-active'?: any;
|
|
125
|
-
readonly 'text-success'?: any;
|
|
126
|
-
readonly 'text-warning'?: any;
|
|
127
|
-
readonly 'icon-neutrals-inverted'?: any;
|
|
128
|
-
readonly 'icon-neutrals'?: any;
|
|
129
|
-
readonly 'icon-neutrals-with-text'?: any;
|
|
130
|
-
readonly 'icon-neutrals-subtle'?: any;
|
|
131
|
-
readonly 'icon-neutrals-disabled'?: any;
|
|
132
|
-
readonly 'icon-neutrals-search'?: any;
|
|
133
|
-
readonly 'icon-neutrals-inactive'?: any;
|
|
134
|
-
readonly 'icon-neutrals-inactive-hover'?: any;
|
|
135
|
-
readonly 'icon-primary-inverted'?: any;
|
|
136
|
-
readonly 'icon-primary'?: any;
|
|
137
|
-
readonly 'icon-primary-hover'?: any;
|
|
138
|
-
readonly 'icon-primary-active'?: any;
|
|
139
|
-
readonly 'icon-primary-selected'?: any;
|
|
140
|
-
readonly 'icon-danger-inverted'?: any;
|
|
141
|
-
readonly 'icon-danger'?: any;
|
|
142
|
-
readonly 'icon-danger-hover'?: any;
|
|
143
|
-
readonly 'icon-danger-active'?: any;
|
|
144
|
-
readonly 'icon-success-inverted'?: any;
|
|
145
|
-
readonly 'icon-success'?: any;
|
|
146
|
-
readonly 'icon-warning'?: any;
|
|
147
|
-
readonly 'border-focus-outer'?: any;
|
|
148
|
-
readonly 'border-focus-middle'?: any;
|
|
149
|
-
readonly 'border-focus-inner'?: any;
|
|
150
|
-
readonly 'border-neutrals'?: any;
|
|
151
|
-
readonly 'border-neutrals-hover'?: any;
|
|
152
|
-
readonly 'border-neutrals-active'?: any;
|
|
153
|
-
readonly 'border-neutrals-disabled'?: any;
|
|
154
|
-
readonly 'border-neutrals-controls'?: any;
|
|
155
|
-
readonly 'border-neutrals-controls-disabled'?: any;
|
|
156
|
-
readonly 'border-neutrals-subtle'?: any;
|
|
157
|
-
readonly 'border-neutrals-inverted'?: any;
|
|
158
|
-
readonly 'border-primary'?: any;
|
|
159
|
-
readonly 'border-primary-hover'?: any;
|
|
160
|
-
readonly 'border-primary-active'?: any;
|
|
161
|
-
readonly 'border-primary-inverted'?: any;
|
|
162
|
-
readonly 'border-danger'?: any;
|
|
163
|
-
readonly 'border-success'?: any;
|
|
164
|
-
readonly 'border-warning'?: any;
|
|
165
|
-
};
|
|
166
|
-
'font-sizes': {
|
|
167
|
-
readonly 150: "0.75rem";
|
|
168
|
-
readonly 175: "0.875rem";
|
|
169
|
-
readonly 200: "1rem";
|
|
170
|
-
readonly 225: "1.125rem";
|
|
171
|
-
readonly 250: "1.25rem";
|
|
172
|
-
readonly 300: "1.5rem";
|
|
173
|
-
readonly 400: "2rem";
|
|
174
|
-
readonly 500: "2.5rem";
|
|
175
|
-
readonly 600: "3rem";
|
|
176
|
-
readonly 800: "4rem";
|
|
177
|
-
readonly 900: "4.5rem";
|
|
178
|
-
};
|
|
179
|
-
radii: {
|
|
180
|
-
readonly none: 0;
|
|
181
|
-
readonly half: "999em";
|
|
182
|
-
readonly 25: "2px";
|
|
183
|
-
readonly 50: "4px";
|
|
184
|
-
readonly 75: "6px";
|
|
185
|
-
readonly 100: "8px";
|
|
186
|
-
readonly 200: "16px";
|
|
187
|
-
};
|
|
188
|
-
shadows: {
|
|
189
|
-
readonly 50: "0 4px 16px #05003812";
|
|
190
|
-
readonly 100: "0 8px 32px #05003808";
|
|
191
|
-
readonly 'focus-small': "0 0 0 2px $colors$border-focus-outer, inset 0 0 0 2px $colors$border-focus-middle, inset 0 0 0 3px $colors$border-focus-inner";
|
|
192
|
-
readonly 'focus-small-outline': "0 0 0 2px $colors$border-focus-outer, inset 0 0 0 1px $colors$border-focus-middle, inset 0 0 0 2px $colors$border-focus-inner";
|
|
193
|
-
readonly 'focus-large': "0 0 0 4px $colors$border-focus-inner, inset 0 0 0 2px $colors$border-focus-middle, inset 0 0 0 3px $colors$border-focus-outer";
|
|
194
|
-
readonly 'focus-controls': "0 0 0 1px $colors$border-focus-inner, 0 0 0 3px $colors$border-focus-middle, 0 0 0 5px $colors$border-focus-outer";
|
|
195
|
-
};
|
|
196
|
-
sizes: {
|
|
197
|
-
readonly number: string;
|
|
198
|
-
readonly 'icon-200': "16px";
|
|
199
|
-
readonly 'icon-300': "24px";
|
|
200
|
-
readonly 'icon-400': "32px";
|
|
201
|
-
};
|
|
202
|
-
space: {
|
|
203
|
-
readonly none: 0;
|
|
204
|
-
readonly 50: "4px";
|
|
205
|
-
readonly 100: "8px";
|
|
206
|
-
readonly 150: "12px";
|
|
207
|
-
readonly 200: "16px";
|
|
208
|
-
readonly 300: "24px";
|
|
209
|
-
readonly 400: "32px";
|
|
210
|
-
readonly 500: "64px";
|
|
211
|
-
readonly 600: "48px";
|
|
212
|
-
readonly 800: "64px";
|
|
213
|
-
readonly 1200: "96px";
|
|
214
|
-
readonly 1600: "128px";
|
|
215
|
-
};
|
|
216
|
-
'space-gap': {
|
|
217
|
-
readonly none: any;
|
|
218
|
-
readonly 50: any;
|
|
219
|
-
readonly 100: any;
|
|
220
|
-
readonly 200: any;
|
|
221
|
-
readonly 300: any;
|
|
222
|
-
};
|
|
223
|
-
'space-inset': {
|
|
224
|
-
readonly none: any;
|
|
225
|
-
readonly 50: any;
|
|
226
|
-
readonly 100: any;
|
|
227
|
-
readonly 150: any;
|
|
228
|
-
readonly 200: any;
|
|
229
|
-
readonly 300: any;
|
|
230
|
-
readonly 400: any;
|
|
231
|
-
readonly 600: any;
|
|
232
|
-
readonly 800: any;
|
|
233
|
-
readonly 1200: any;
|
|
234
|
-
readonly 1600: any;
|
|
235
|
-
};
|
|
236
|
-
'space-offset': {
|
|
237
|
-
readonly none: any;
|
|
238
|
-
readonly 50: any;
|
|
239
|
-
readonly 100: any;
|
|
240
|
-
readonly 150: any;
|
|
241
|
-
readonly 200: any;
|
|
242
|
-
readonly 300: any;
|
|
243
|
-
readonly 400: any;
|
|
244
|
-
readonly 600: any;
|
|
245
|
-
readonly 800: any;
|
|
246
|
-
readonly 1200: any;
|
|
247
|
-
readonly 1600: any;
|
|
248
|
-
readonly 'stacking-none': any;
|
|
249
|
-
readonly 'stacking-100': any;
|
|
250
|
-
readonly 'stacking-200': any;
|
|
251
|
-
readonly 'stacking-300': any;
|
|
252
|
-
readonly 'stacking-400': any;
|
|
253
|
-
readonly 'stacking-500': any;
|
|
254
|
-
readonly 'stacking-800': any;
|
|
255
|
-
};
|
|
256
|
-
'z-indices': {
|
|
257
|
-
readonly dropdownMenu: 100;
|
|
258
|
-
readonly popover: 200;
|
|
259
|
-
readonly tooltip: 300;
|
|
260
|
-
};
|
|
261
|
-
}, {
|
|
262
|
-
readonly background: "colors";
|
|
263
|
-
readonly backgroundColor: "colors";
|
|
264
|
-
readonly backgroundImage: "colors";
|
|
265
|
-
readonly blockSize: "sizes";
|
|
266
|
-
readonly border: "colors";
|
|
267
|
-
readonly borderBlock: "colors";
|
|
268
|
-
readonly borderBlockEnd: "colors";
|
|
269
|
-
readonly borderBlockStart: "colors";
|
|
270
|
-
readonly borderBottom: "colors";
|
|
271
|
-
readonly borderBottomColor: "colors";
|
|
272
|
-
readonly borderBottomLeftRadius: "radii";
|
|
273
|
-
readonly borderBottomRightRadius: "radii";
|
|
274
|
-
readonly borderBottomStyle: "border-styles";
|
|
275
|
-
readonly borderBottomWidth: "border-widths";
|
|
276
|
-
readonly borderColor: "colors";
|
|
277
|
-
readonly borderImage: "colors";
|
|
278
|
-
readonly borderInline: "colors";
|
|
279
|
-
readonly borderInlineEnd: "colors";
|
|
280
|
-
readonly borderInlineStart: "colors";
|
|
281
|
-
readonly borderLeft: "colors";
|
|
282
|
-
readonly borderLeftColor: "colors";
|
|
283
|
-
readonly borderLeftStyle: "border-styles";
|
|
284
|
-
readonly borderLeftWidth: "border-widths";
|
|
285
|
-
readonly borderRadius: "radii";
|
|
286
|
-
readonly borderRight: "colors";
|
|
287
|
-
readonly borderRightColor: "colors";
|
|
288
|
-
readonly borderRightStyle: "border-styles";
|
|
289
|
-
readonly borderRightWidth: "border-widths";
|
|
290
|
-
readonly borderStyle: "border-styles";
|
|
291
|
-
readonly borderTop: "colors";
|
|
292
|
-
readonly borderTopColor: "colors";
|
|
293
|
-
readonly borderTopLeftRadius: "radii";
|
|
294
|
-
readonly borderTopRightRadius: "radii";
|
|
295
|
-
readonly borderTopStyle: "border-styles";
|
|
296
|
-
readonly borderTopWidth: "border-widths";
|
|
297
|
-
readonly borderWidth: "border-widths";
|
|
298
|
-
readonly bottom: "space";
|
|
299
|
-
readonly boxShadow: "shadows";
|
|
300
|
-
readonly caretColor: "colors";
|
|
301
|
-
readonly color: "colors";
|
|
302
|
-
readonly columnGap: "space-gap";
|
|
303
|
-
readonly columnRuleColor: "colors";
|
|
304
|
-
readonly fill: "colors";
|
|
305
|
-
readonly flexBasis: "sizes";
|
|
306
|
-
readonly fontFamily: "fonts";
|
|
307
|
-
readonly fontSize: "font-sizes";
|
|
308
|
-
readonly fontWeight: "font-weights";
|
|
309
|
-
readonly gap: "space-gap";
|
|
310
|
-
readonly gridColumnGap: "space-gap";
|
|
311
|
-
readonly gridGap: "space-gap";
|
|
312
|
-
readonly gridRowGap: "space-gap";
|
|
313
|
-
readonly gridTemplateColumns: "sizes";
|
|
314
|
-
readonly gridTemplateRows: "sizes";
|
|
315
|
-
readonly height: "sizes";
|
|
316
|
-
readonly inlineSize: "sizes";
|
|
317
|
-
readonly inset: "space-inset";
|
|
318
|
-
readonly insetBlock: "space-inset";
|
|
319
|
-
readonly insetBlockEnd: "space-inset";
|
|
320
|
-
readonly insetBlockStart: "space-inset";
|
|
321
|
-
readonly insetInline: "space-inset";
|
|
322
|
-
readonly insetInlineEnd: "space-inset";
|
|
323
|
-
readonly insetInlineStart: "space-inset";
|
|
324
|
-
readonly left: "space";
|
|
325
|
-
readonly letterSpacing: "letter-spacings";
|
|
326
|
-
readonly lineHeight: "line-heights";
|
|
327
|
-
readonly margin: "space-offset";
|
|
328
|
-
readonly marginBlock: "space-offset";
|
|
329
|
-
readonly marginBlockEnd: "space-offset";
|
|
330
|
-
readonly marginBlockStart: "space-offset";
|
|
331
|
-
readonly marginBottom: "space-offset";
|
|
332
|
-
readonly marginInline: "space-offset";
|
|
333
|
-
readonly marginInlineEnd: "space-offset";
|
|
334
|
-
readonly marginInlineStart: "space-offset";
|
|
335
|
-
readonly marginLeft: "space-offset";
|
|
336
|
-
readonly marginRight: "space-offset";
|
|
337
|
-
readonly marginTop: "space-offset";
|
|
338
|
-
readonly maxBlockSize: "sizes";
|
|
339
|
-
readonly maxHeight: "sizes";
|
|
340
|
-
readonly maxInlineSize: "sizes";
|
|
341
|
-
readonly maxWidth: "sizes";
|
|
342
|
-
readonly minBlockSize: "sizes";
|
|
343
|
-
readonly minHeight: "sizes";
|
|
344
|
-
readonly minInlineSize: "sizes";
|
|
345
|
-
readonly minWidth: "sizes";
|
|
346
|
-
readonly outline: "colors";
|
|
347
|
-
readonly outlineColor: "colors";
|
|
348
|
-
readonly padding: "space-inset";
|
|
349
|
-
readonly paddingBlock: "space-inset";
|
|
350
|
-
readonly paddingBlockEnd: "space-inset";
|
|
351
|
-
readonly paddingBlockStart: "space-inset";
|
|
352
|
-
readonly paddingBottom: "space-inset";
|
|
353
|
-
readonly paddingInline: "space-inset";
|
|
354
|
-
readonly paddingInlineEnd: "space-inset";
|
|
355
|
-
readonly paddingInlineStart: "space-inset";
|
|
356
|
-
readonly paddingLeft: "space-inset";
|
|
357
|
-
readonly paddingRight: "space-inset";
|
|
358
|
-
readonly paddingTop: "space-inset";
|
|
359
|
-
readonly right: "space";
|
|
360
|
-
readonly rowGap: "space-gap";
|
|
361
|
-
readonly scrollMargin: "space-offset";
|
|
362
|
-
readonly scrollMarginBlock: "space-offset";
|
|
363
|
-
readonly scrollMarginBlockEnd: "space-offset";
|
|
364
|
-
readonly scrollMarginBlockStart: "space-offset";
|
|
365
|
-
readonly scrollMarginBottom: "space-offset";
|
|
366
|
-
readonly scrollMarginInline: "space-offset";
|
|
367
|
-
readonly scrollMarginInlineEnd: "space-offset";
|
|
368
|
-
readonly scrollMarginInlineStart: "space-offset";
|
|
369
|
-
readonly scrollMarginLeft: "space-offset";
|
|
370
|
-
readonly scrollMarginRight: "space-offset";
|
|
371
|
-
readonly scrollMarginTop: "space-offset";
|
|
372
|
-
readonly scrollPadding: "space-inset";
|
|
373
|
-
readonly scrollPaddingBlock: "space-inset";
|
|
374
|
-
readonly scrollPaddingBlockEnd: "space-inset";
|
|
375
|
-
readonly scrollPaddingBlockStart: "space-inset";
|
|
376
|
-
readonly scrollPaddingBottom: "space-inset";
|
|
377
|
-
readonly scrollPaddingInline: "space-inset";
|
|
378
|
-
readonly scrollPaddingInlineEnd: "space-inset";
|
|
379
|
-
readonly scrollPaddingInlineStart: "space-inset";
|
|
380
|
-
readonly scrollPaddingLeft: "space-inset";
|
|
381
|
-
readonly scrollPaddingRight: "space-inset";
|
|
382
|
-
readonly scrollPaddingTop: "space-inset";
|
|
383
|
-
readonly stroke: "colors";
|
|
384
|
-
readonly textDecorationColor: "colors";
|
|
385
|
-
readonly textShadow: "shadows";
|
|
386
|
-
readonly top: "space";
|
|
387
|
-
readonly transition: "transitions";
|
|
388
|
-
readonly width: "sizes";
|
|
389
|
-
readonly zIndex: "z-indices";
|
|
390
|
-
}, {
|
|
391
|
-
paddingX: (value: {
|
|
392
|
-
readonly [$$PropertyValue]: "padding";
|
|
393
|
-
}) => {
|
|
394
|
-
paddingLeft: {
|
|
395
|
-
readonly [$$PropertyValue]: "padding";
|
|
14
|
+
}, {}> & _mirohq_design_system_stitches.SafeProps<Omit<Pick<react.SVGProps<SVGSVGElement>, "string" | "clipPath" | "color" | "cursor" | "direction" | "display" | "filter" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "height" | "imageRendering" | "letterSpacing" | "opacity" | "order" | "paintOrder" | "pointerEvents" | "rotate" | "scale" | "textRendering" | "transform" | "unicodeBidi" | "visibility" | "width" | "wordSpacing" | "writingMode" | "mask" | "offset" | "overflow" | "textDecoration" | "alignmentBaseline" | "baselineShift" | "clip" | "clipRule" | "colorInterpolation" | "colorRendering" | "dominantBaseline" | "fill" | "fillOpacity" | "fillRule" | "floodColor" | "floodOpacity" | "glyphOrientationVertical" | "lightingColor" | "markerEnd" | "markerMid" | "markerStart" | "shapeRendering" | "stopColor" | "stopOpacity" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "textAnchor" | "vectorEffect" | "className" | "style" | "children" | "media" | "path" | "crossOrigin" | "href" | "max" | "method" | "min" | "name" | "target" | "type" | "id" | "lang" | "tabIndex" | "role" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "accentHeight" | "accumulate" | "additive" | "allowReorder" | "alphabetic" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clipPathUnits" | "colorInterpolationFilters" | "colorProfile" | "contentScriptType" | "contentStyleType" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "divisor" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "filterRes" | "filterUnits" | "focusable" | "format" | "fr" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphRef" | "gradientTransform" | "gradientUnits" | "hanging" | "horizAdvX" | "horizOriginX" | "ideographic" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "limitingConeAngle" | "local" | "markerHeight" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "mathematical" | "mode" | "numOctaves" | "operator" | "orient" | "orientation" | "origin" | "overlinePosition" | "overlineThickness" | "panose1" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rx" | "ry" | "seed" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "strikethroughPosition" | "strikethroughThickness" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textLength" | "to" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "vMathematical" | "widths" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "y" | "yChannelSelector" | "z" | "zoomAndPan"> & {
|
|
15
|
+
ref?: ((instance: SVGSVGElement | null) => void) | react.RefObject<SVGSVGElement> | null | undefined;
|
|
16
|
+
} & {
|
|
17
|
+
asChild?: boolean | undefined;
|
|
18
|
+
}, "css"> & _stitches_react_types_styled_component.TransformProps<{}, {}> & {
|
|
19
|
+
css?: _stitches_react_types_css_util.CSS<{}, {
|
|
20
|
+
'border-widths': {
|
|
21
|
+
readonly none: 0;
|
|
22
|
+
readonly sm: "1px";
|
|
23
|
+
readonly md: "2px";
|
|
24
|
+
readonly lg: "4px";
|
|
396
25
|
};
|
|
397
|
-
|
|
398
|
-
readonly
|
|
26
|
+
colors: {
|
|
27
|
+
readonly 'blue-100': any;
|
|
28
|
+
readonly 'blue-200': any;
|
|
29
|
+
readonly 'blue-300': any;
|
|
30
|
+
readonly 'blue-400': any;
|
|
31
|
+
readonly 'blue-500': any;
|
|
32
|
+
readonly 'blue-600': any;
|
|
33
|
+
readonly 'blue-700': any;
|
|
34
|
+
readonly 'blue-800': any;
|
|
35
|
+
readonly 'blue-900': any;
|
|
36
|
+
readonly 'blue-1000': any;
|
|
37
|
+
readonly 'gray-100': any;
|
|
38
|
+
readonly 'gray-200': any;
|
|
39
|
+
readonly 'gray-300': any;
|
|
40
|
+
readonly 'gray-400': any;
|
|
41
|
+
readonly 'gray-500': any;
|
|
42
|
+
readonly 'gray-600': any;
|
|
43
|
+
readonly 'gray-700': any;
|
|
44
|
+
readonly 'gray-800': any;
|
|
45
|
+
readonly 'gray-900': any;
|
|
46
|
+
readonly 'indigo-100': any;
|
|
47
|
+
readonly 'indigo-200': any;
|
|
48
|
+
readonly 'indigo-300': any;
|
|
49
|
+
readonly 'indigo-400': any;
|
|
50
|
+
readonly 'indigo-500': any;
|
|
51
|
+
readonly 'indigo-600': any;
|
|
52
|
+
readonly 'indigo-700': any;
|
|
53
|
+
readonly 'indigo-800': any;
|
|
54
|
+
readonly 'indigo-900': any;
|
|
55
|
+
readonly 'red-100': any;
|
|
56
|
+
readonly 'red-200': any;
|
|
57
|
+
readonly 'red-300': any;
|
|
58
|
+
readonly 'red-400': any;
|
|
59
|
+
readonly 'red-500': any;
|
|
60
|
+
readonly 'red-600': any;
|
|
61
|
+
readonly 'red-700': any;
|
|
62
|
+
readonly 'red-800': any;
|
|
63
|
+
readonly 'red-900': any;
|
|
64
|
+
readonly 'yellow-100': any;
|
|
65
|
+
readonly 'yellow-200': any;
|
|
66
|
+
readonly 'yellow-300': any;
|
|
67
|
+
readonly 'yellow-400': any;
|
|
68
|
+
readonly 'yellow-500': any;
|
|
69
|
+
readonly 'yellow-600': any;
|
|
70
|
+
readonly 'yellow-700': any;
|
|
71
|
+
readonly 'yellow-800': any;
|
|
72
|
+
readonly 'yellow-900': any;
|
|
73
|
+
readonly 'green-100': any;
|
|
74
|
+
readonly 'green-200': any;
|
|
75
|
+
readonly 'green-300': any;
|
|
76
|
+
readonly 'green-400': any;
|
|
77
|
+
readonly 'green-500': any;
|
|
78
|
+
readonly 'green-600': any;
|
|
79
|
+
readonly 'green-700': any;
|
|
80
|
+
readonly 'green-800': any;
|
|
81
|
+
readonly 'green-900': any;
|
|
82
|
+
readonly black: any;
|
|
83
|
+
readonly white: any;
|
|
84
|
+
readonly transparent: any;
|
|
85
|
+
readonly 'background-neutrals'?: any;
|
|
86
|
+
readonly 'background-neutrals-body'?: any;
|
|
87
|
+
readonly 'background-neutrals-container'?: any;
|
|
88
|
+
readonly 'background-neutrals-inverted'?: any;
|
|
89
|
+
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
90
|
+
readonly 'background-neutrals-subtle'?: any;
|
|
91
|
+
readonly 'background-neutrals-subtle-hover'?: any;
|
|
92
|
+
readonly 'background-neutrals-subtle-active'?: any;
|
|
93
|
+
readonly 'background-neutrals-disabled'?: any;
|
|
94
|
+
readonly 'background-neutrals-controls-disabled'?: any;
|
|
95
|
+
readonly 'background-neutrals-scrolls'?: any;
|
|
96
|
+
readonly 'background-neutrals-inactive'?: any;
|
|
97
|
+
readonly 'background-neutrals-inactive-hover'?: any;
|
|
98
|
+
readonly 'background-primary-prominent'?: any;
|
|
99
|
+
readonly 'background-primary-prominent-hover'?: any;
|
|
100
|
+
readonly 'background-primary-prominent-active'?: any;
|
|
101
|
+
readonly 'background-primary-prominent-selected'?: any;
|
|
102
|
+
readonly 'background-primary-subtle'?: any;
|
|
103
|
+
readonly 'background-primary-subtle-hover'?: any;
|
|
104
|
+
readonly 'background-primary-subtle-active'?: any;
|
|
105
|
+
readonly 'background-primary-subtle-selected'?: any;
|
|
106
|
+
readonly 'background-danger-prominent'?: any;
|
|
107
|
+
readonly 'background-danger-prominent-hover'?: any;
|
|
108
|
+
readonly 'background-danger-prominent-active'?: any;
|
|
109
|
+
readonly 'background-danger'?: any;
|
|
110
|
+
readonly 'background-danger-hover'?: any;
|
|
111
|
+
readonly 'background-success'?: any;
|
|
112
|
+
readonly 'background-warning-subtle'?: any;
|
|
113
|
+
readonly 'background-warning-prominent'?: any;
|
|
114
|
+
readonly 'text-neutrals-inverted'?: any;
|
|
115
|
+
readonly 'text-neutrals'?: any;
|
|
116
|
+
readonly 'text-neutrals-subtle'?: any;
|
|
117
|
+
readonly 'text-neutrals-placeholder-only'?: any;
|
|
118
|
+
readonly 'text-neutrals-placeholder'?: any;
|
|
119
|
+
readonly 'text-neutrals-disabled'?: any;
|
|
120
|
+
readonly 'text-primary-inverted'?: any;
|
|
121
|
+
readonly 'text-primary'?: any;
|
|
122
|
+
readonly 'text-primary-hover'?: any;
|
|
123
|
+
readonly 'text-primary-active'?: any;
|
|
124
|
+
readonly 'text-primary-selected'?: any;
|
|
125
|
+
readonly 'text-primary-inverted-subtle'?: any;
|
|
126
|
+
readonly 'text-danger-inverted'?: any;
|
|
127
|
+
readonly 'text-danger'?: any;
|
|
128
|
+
readonly 'text-danger-hover'?: any;
|
|
129
|
+
readonly 'text-danger-active'?: any;
|
|
130
|
+
readonly 'text-success'?: any;
|
|
131
|
+
readonly 'text-warning'?: any;
|
|
132
|
+
readonly 'icon-neutrals-inverted'?: any;
|
|
133
|
+
readonly 'icon-neutrals'?: any;
|
|
134
|
+
readonly 'icon-neutrals-with-text'?: any;
|
|
135
|
+
readonly 'icon-neutrals-subtle'?: any;
|
|
136
|
+
readonly 'icon-neutrals-disabled'?: any;
|
|
137
|
+
readonly 'icon-neutrals-search'?: any;
|
|
138
|
+
readonly 'icon-neutrals-inactive'?: any;
|
|
139
|
+
readonly 'icon-neutrals-inactive-hover'?: any;
|
|
140
|
+
readonly 'icon-primary-inverted'?: any;
|
|
141
|
+
readonly 'icon-primary'?: any;
|
|
142
|
+
readonly 'icon-primary-hover'?: any;
|
|
143
|
+
readonly 'icon-primary-active'?: any;
|
|
144
|
+
readonly 'icon-primary-selected'?: any;
|
|
145
|
+
readonly 'icon-danger-inverted'?: any;
|
|
146
|
+
readonly 'icon-danger'?: any;
|
|
147
|
+
readonly 'icon-danger-hover'?: any;
|
|
148
|
+
readonly 'icon-danger-active'?: any;
|
|
149
|
+
readonly 'icon-success-inverted'?: any;
|
|
150
|
+
readonly 'icon-success'?: any;
|
|
151
|
+
readonly 'icon-warning'?: any;
|
|
152
|
+
readonly 'border-focus-outer'?: any;
|
|
153
|
+
readonly 'border-focus-middle'?: any;
|
|
154
|
+
readonly 'border-focus-inner'?: any;
|
|
155
|
+
readonly 'border-neutrals'?: any;
|
|
156
|
+
readonly 'border-neutrals-hover'?: any;
|
|
157
|
+
readonly 'border-neutrals-active'?: any;
|
|
158
|
+
readonly 'border-neutrals-disabled'?: any;
|
|
159
|
+
readonly 'border-neutrals-controls'?: any;
|
|
160
|
+
readonly 'border-neutrals-controls-disabled'?: any;
|
|
161
|
+
readonly 'border-neutrals-subtle'?: any;
|
|
162
|
+
readonly 'border-neutrals-inverted'?: any;
|
|
163
|
+
readonly 'border-primary'?: any;
|
|
164
|
+
readonly 'border-primary-hover'?: any;
|
|
165
|
+
readonly 'border-primary-active'?: any;
|
|
166
|
+
readonly 'border-primary-inverted'?: any;
|
|
167
|
+
readonly 'border-danger'?: any;
|
|
168
|
+
readonly 'border-success'?: any;
|
|
169
|
+
readonly 'border-warning'?: any;
|
|
399
170
|
};
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
readonly
|
|
171
|
+
'font-sizes': {
|
|
172
|
+
readonly 150: "0.75rem";
|
|
173
|
+
readonly 175: "0.875rem";
|
|
174
|
+
readonly 200: "1rem";
|
|
175
|
+
readonly 225: "1.125rem";
|
|
176
|
+
readonly 250: "1.25rem";
|
|
177
|
+
readonly 300: "1.5rem";
|
|
178
|
+
readonly 400: "2rem";
|
|
179
|
+
readonly 500: "2.5rem";
|
|
180
|
+
readonly 600: "3rem";
|
|
181
|
+
readonly 800: "4rem";
|
|
182
|
+
readonly 900: "4.5rem";
|
|
406
183
|
};
|
|
407
|
-
|
|
408
|
-
readonly
|
|
184
|
+
radii: {
|
|
185
|
+
readonly none: 0;
|
|
186
|
+
readonly half: "999em";
|
|
187
|
+
readonly 25: "2px";
|
|
188
|
+
readonly 50: "4px";
|
|
189
|
+
readonly 75: "6px";
|
|
190
|
+
readonly 100: "8px";
|
|
191
|
+
readonly 200: "16px";
|
|
409
192
|
};
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
readonly
|
|
193
|
+
shadows: {
|
|
194
|
+
readonly 50: "0 4px 16px #05003812";
|
|
195
|
+
readonly 100: "0 8px 32px #05003808";
|
|
196
|
+
readonly 'focus-small': "0 0 0 2px $colors$border-focus-outer, inset 0 0 0 2px $colors$border-focus-middle, inset 0 0 0 3px $colors$border-focus-inner";
|
|
197
|
+
readonly 'focus-small-outline': "0 0 0 2px $colors$border-focus-outer, inset 0 0 0 1px $colors$border-focus-middle, inset 0 0 0 2px $colors$border-focus-inner";
|
|
198
|
+
readonly 'focus-large': "0 0 0 4px $colors$border-focus-inner, inset 0 0 0 2px $colors$border-focus-middle, inset 0 0 0 3px $colors$border-focus-outer";
|
|
199
|
+
readonly 'focus-controls': "0 0 0 1px $colors$border-focus-inner, 0 0 0 3px $colors$border-focus-middle, 0 0 0 5px $colors$border-focus-outer";
|
|
416
200
|
};
|
|
417
|
-
|
|
418
|
-
readonly
|
|
201
|
+
sizes: {
|
|
202
|
+
readonly number: string;
|
|
203
|
+
readonly 'icon-200': "16px";
|
|
204
|
+
readonly 'icon-300': "24px";
|
|
205
|
+
readonly 'icon-400': "32px";
|
|
419
206
|
};
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
readonly
|
|
207
|
+
space: {
|
|
208
|
+
readonly none: 0;
|
|
209
|
+
readonly 50: "4px";
|
|
210
|
+
readonly 100: "8px";
|
|
211
|
+
readonly 150: "12px";
|
|
212
|
+
readonly 200: "16px";
|
|
213
|
+
readonly 300: "24px";
|
|
214
|
+
readonly 400: "32px";
|
|
215
|
+
readonly 500: "64px";
|
|
216
|
+
readonly 600: "48px";
|
|
217
|
+
readonly 800: "64px";
|
|
218
|
+
readonly 1200: "96px";
|
|
219
|
+
readonly 1600: "128px";
|
|
220
|
+
};
|
|
221
|
+
'space-gap': {
|
|
222
|
+
readonly none: any;
|
|
223
|
+
readonly 50: any;
|
|
224
|
+
readonly 100: any;
|
|
225
|
+
readonly 200: any;
|
|
226
|
+
readonly 300: any;
|
|
227
|
+
};
|
|
228
|
+
'space-inset': {
|
|
229
|
+
readonly none: any;
|
|
230
|
+
readonly 50: any;
|
|
231
|
+
readonly 100: any;
|
|
232
|
+
readonly 150: any;
|
|
233
|
+
readonly 200: any;
|
|
234
|
+
readonly 300: any;
|
|
235
|
+
readonly 400: any;
|
|
236
|
+
readonly 600: any;
|
|
237
|
+
readonly 800: any;
|
|
238
|
+
readonly 1200: any;
|
|
239
|
+
readonly 1600: any;
|
|
426
240
|
};
|
|
427
|
-
|
|
241
|
+
'space-offset': {
|
|
242
|
+
readonly none: any;
|
|
243
|
+
readonly 50: any;
|
|
244
|
+
readonly 100: any;
|
|
245
|
+
readonly 150: any;
|
|
246
|
+
readonly 200: any;
|
|
247
|
+
readonly 300: any;
|
|
248
|
+
readonly 400: any;
|
|
249
|
+
readonly 600: any;
|
|
250
|
+
readonly 800: any;
|
|
251
|
+
readonly 1200: any;
|
|
252
|
+
readonly 1600: any;
|
|
253
|
+
readonly 'stacking-none': any;
|
|
254
|
+
readonly 'stacking-100': any;
|
|
255
|
+
readonly 'stacking-200': any;
|
|
256
|
+
readonly 'stacking-300': any;
|
|
257
|
+
readonly 'stacking-400': any;
|
|
258
|
+
readonly 'stacking-500': any;
|
|
259
|
+
readonly 'stacking-800': any;
|
|
260
|
+
};
|
|
261
|
+
'z-indices': {
|
|
262
|
+
readonly dropdownMenu: 100;
|
|
263
|
+
readonly popover: 200;
|
|
264
|
+
readonly tooltip: 300;
|
|
265
|
+
};
|
|
266
|
+
}, {
|
|
267
|
+
readonly background: "colors";
|
|
268
|
+
readonly backgroundColor: "colors";
|
|
269
|
+
readonly backgroundImage: "colors";
|
|
270
|
+
readonly blockSize: "sizes";
|
|
271
|
+
readonly border: "colors";
|
|
272
|
+
readonly borderBlock: "colors";
|
|
273
|
+
readonly borderBlockEnd: "colors";
|
|
274
|
+
readonly borderBlockStart: "colors";
|
|
275
|
+
readonly borderBottom: "colors";
|
|
276
|
+
readonly borderBottomColor: "colors";
|
|
277
|
+
readonly borderBottomLeftRadius: "radii";
|
|
278
|
+
readonly borderBottomRightRadius: "radii";
|
|
279
|
+
readonly borderBottomStyle: "border-styles";
|
|
280
|
+
readonly borderBottomWidth: "border-widths";
|
|
281
|
+
readonly borderColor: "colors";
|
|
282
|
+
readonly borderImage: "colors";
|
|
283
|
+
readonly borderInline: "colors";
|
|
284
|
+
readonly borderInlineEnd: "colors";
|
|
285
|
+
readonly borderInlineStart: "colors";
|
|
286
|
+
readonly borderLeft: "colors";
|
|
287
|
+
readonly borderLeftColor: "colors";
|
|
288
|
+
readonly borderLeftStyle: "border-styles";
|
|
289
|
+
readonly borderLeftWidth: "border-widths";
|
|
290
|
+
readonly borderRadius: "radii";
|
|
291
|
+
readonly borderRight: "colors";
|
|
292
|
+
readonly borderRightColor: "colors";
|
|
293
|
+
readonly borderRightStyle: "border-styles";
|
|
294
|
+
readonly borderRightWidth: "border-widths";
|
|
295
|
+
readonly borderStyle: "border-styles";
|
|
296
|
+
readonly borderTop: "colors";
|
|
297
|
+
readonly borderTopColor: "colors";
|
|
298
|
+
readonly borderTopLeftRadius: "radii";
|
|
299
|
+
readonly borderTopRightRadius: "radii";
|
|
300
|
+
readonly borderTopStyle: "border-styles";
|
|
301
|
+
readonly borderTopWidth: "border-widths";
|
|
302
|
+
readonly borderWidth: "border-widths";
|
|
303
|
+
readonly bottom: "space";
|
|
304
|
+
readonly boxShadow: "shadows";
|
|
305
|
+
readonly caretColor: "colors";
|
|
306
|
+
readonly color: "colors";
|
|
307
|
+
readonly columnGap: "space-gap";
|
|
308
|
+
readonly columnRuleColor: "colors";
|
|
309
|
+
readonly fill: "colors";
|
|
310
|
+
readonly flexBasis: "sizes";
|
|
311
|
+
readonly fontFamily: "fonts";
|
|
312
|
+
readonly fontSize: "font-sizes";
|
|
313
|
+
readonly fontWeight: "font-weights";
|
|
314
|
+
readonly gap: "space-gap";
|
|
315
|
+
readonly gridColumnGap: "space-gap";
|
|
316
|
+
readonly gridGap: "space-gap";
|
|
317
|
+
readonly gridRowGap: "space-gap";
|
|
318
|
+
readonly gridTemplateColumns: "sizes";
|
|
319
|
+
readonly gridTemplateRows: "sizes";
|
|
320
|
+
readonly height: "sizes";
|
|
321
|
+
readonly inlineSize: "sizes";
|
|
322
|
+
readonly inset: "space-inset";
|
|
323
|
+
readonly insetBlock: "space-inset";
|
|
324
|
+
readonly insetBlockEnd: "space-inset";
|
|
325
|
+
readonly insetBlockStart: "space-inset";
|
|
326
|
+
readonly insetInline: "space-inset";
|
|
327
|
+
readonly insetInlineEnd: "space-inset";
|
|
328
|
+
readonly insetInlineStart: "space-inset";
|
|
329
|
+
readonly left: "space";
|
|
330
|
+
readonly letterSpacing: "letter-spacings";
|
|
331
|
+
readonly lineHeight: "line-heights";
|
|
332
|
+
readonly margin: "space-offset";
|
|
333
|
+
readonly marginBlock: "space-offset";
|
|
334
|
+
readonly marginBlockEnd: "space-offset";
|
|
335
|
+
readonly marginBlockStart: "space-offset";
|
|
336
|
+
readonly marginBottom: "space-offset";
|
|
337
|
+
readonly marginInline: "space-offset";
|
|
338
|
+
readonly marginInlineEnd: "space-offset";
|
|
339
|
+
readonly marginInlineStart: "space-offset";
|
|
340
|
+
readonly marginLeft: "space-offset";
|
|
341
|
+
readonly marginRight: "space-offset";
|
|
342
|
+
readonly marginTop: "space-offset";
|
|
343
|
+
readonly maxBlockSize: "sizes";
|
|
344
|
+
readonly maxHeight: "sizes";
|
|
345
|
+
readonly maxInlineSize: "sizes";
|
|
346
|
+
readonly maxWidth: "sizes";
|
|
347
|
+
readonly minBlockSize: "sizes";
|
|
348
|
+
readonly minHeight: "sizes";
|
|
349
|
+
readonly minInlineSize: "sizes";
|
|
350
|
+
readonly minWidth: "sizes";
|
|
351
|
+
readonly outline: "colors";
|
|
352
|
+
readonly outlineColor: "colors";
|
|
353
|
+
readonly padding: "space-inset";
|
|
354
|
+
readonly paddingBlock: "space-inset";
|
|
355
|
+
readonly paddingBlockEnd: "space-inset";
|
|
356
|
+
readonly paddingBlockStart: "space-inset";
|
|
357
|
+
readonly paddingBottom: "space-inset";
|
|
358
|
+
readonly paddingInline: "space-inset";
|
|
359
|
+
readonly paddingInlineEnd: "space-inset";
|
|
360
|
+
readonly paddingInlineStart: "space-inset";
|
|
361
|
+
readonly paddingLeft: "space-inset";
|
|
362
|
+
readonly paddingRight: "space-inset";
|
|
363
|
+
readonly paddingTop: "space-inset";
|
|
364
|
+
readonly right: "space";
|
|
365
|
+
readonly rowGap: "space-gap";
|
|
366
|
+
readonly scrollMargin: "space-offset";
|
|
367
|
+
readonly scrollMarginBlock: "space-offset";
|
|
368
|
+
readonly scrollMarginBlockEnd: "space-offset";
|
|
369
|
+
readonly scrollMarginBlockStart: "space-offset";
|
|
370
|
+
readonly scrollMarginBottom: "space-offset";
|
|
371
|
+
readonly scrollMarginInline: "space-offset";
|
|
372
|
+
readonly scrollMarginInlineEnd: "space-offset";
|
|
373
|
+
readonly scrollMarginInlineStart: "space-offset";
|
|
374
|
+
readonly scrollMarginLeft: "space-offset";
|
|
375
|
+
readonly scrollMarginRight: "space-offset";
|
|
376
|
+
readonly scrollMarginTop: "space-offset";
|
|
377
|
+
readonly scrollPadding: "space-inset";
|
|
378
|
+
readonly scrollPaddingBlock: "space-inset";
|
|
379
|
+
readonly scrollPaddingBlockEnd: "space-inset";
|
|
380
|
+
readonly scrollPaddingBlockStart: "space-inset";
|
|
381
|
+
readonly scrollPaddingBottom: "space-inset";
|
|
382
|
+
readonly scrollPaddingInline: "space-inset";
|
|
383
|
+
readonly scrollPaddingInlineEnd: "space-inset";
|
|
384
|
+
readonly scrollPaddingInlineStart: "space-inset";
|
|
385
|
+
readonly scrollPaddingLeft: "space-inset";
|
|
386
|
+
readonly scrollPaddingRight: "space-inset";
|
|
387
|
+
readonly scrollPaddingTop: "space-inset";
|
|
388
|
+
readonly stroke: "colors";
|
|
389
|
+
readonly textDecorationColor: "colors";
|
|
390
|
+
readonly textShadow: "shadows";
|
|
391
|
+
readonly top: "space";
|
|
392
|
+
readonly transition: "transitions";
|
|
393
|
+
readonly width: "sizes";
|
|
394
|
+
readonly zIndex: "z-indices";
|
|
395
|
+
}, {
|
|
396
|
+
paddingX: (value: {
|
|
397
|
+
readonly [$$PropertyValue]: "padding";
|
|
398
|
+
}) => {
|
|
399
|
+
paddingLeft: {
|
|
400
|
+
readonly [$$PropertyValue]: "padding";
|
|
401
|
+
};
|
|
402
|
+
paddingRight: {
|
|
403
|
+
readonly [$$PropertyValue]: "padding";
|
|
404
|
+
};
|
|
405
|
+
};
|
|
406
|
+
paddingY: (value: {
|
|
407
|
+
readonly [$$PropertyValue]: "padding";
|
|
408
|
+
}) => {
|
|
409
|
+
paddingTop: {
|
|
410
|
+
readonly [$$PropertyValue]: "padding";
|
|
411
|
+
};
|
|
412
|
+
paddingBottom: {
|
|
413
|
+
readonly [$$PropertyValue]: "padding";
|
|
414
|
+
};
|
|
415
|
+
};
|
|
416
|
+
marginX: (value: {
|
|
428
417
|
readonly [$$PropertyValue]: "margin";
|
|
418
|
+
}) => {
|
|
419
|
+
marginLeft: {
|
|
420
|
+
readonly [$$PropertyValue]: "margin";
|
|
421
|
+
};
|
|
422
|
+
marginRight: {
|
|
423
|
+
readonly [$$PropertyValue]: "margin";
|
|
424
|
+
};
|
|
429
425
|
};
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
426
|
+
marginY: (value: {
|
|
427
|
+
readonly [$$PropertyValue]: "margin";
|
|
428
|
+
}) => {
|
|
429
|
+
marginTop: {
|
|
430
|
+
readonly [$$PropertyValue]: "margin";
|
|
431
|
+
};
|
|
432
|
+
marginBottom: {
|
|
433
|
+
readonly [$$PropertyValue]: "margin";
|
|
434
|
+
};
|
|
436
435
|
};
|
|
437
|
-
|
|
436
|
+
square: (value: {
|
|
438
437
|
readonly [$$PropertyValue]: "width";
|
|
438
|
+
}) => {
|
|
439
|
+
width: {
|
|
440
|
+
readonly [$$PropertyValue]: "width";
|
|
441
|
+
};
|
|
442
|
+
height: {
|
|
443
|
+
readonly [$$PropertyValue]: "width";
|
|
444
|
+
};
|
|
439
445
|
};
|
|
440
|
-
};
|
|
441
|
-
}
|
|
446
|
+
}> | undefined;
|
|
447
|
+
}> & {
|
|
448
|
+
children?: react.ReactNode;
|
|
449
|
+
} & _mirohq_design_system_stitches.CustomStylesProps, "string" | "clipPath" | "color" | "cursor" | "direction" | "display" | "filter" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "height" | "imageRendering" | "letterSpacing" | "opacity" | "order" | "paintOrder" | "pointerEvents" | "rotate" | "scale" | "textRendering" | "transform" | "unicodeBidi" | "visibility" | "width" | "wordSpacing" | "writingMode" | "mask" | "offset" | "overflow" | "textDecoration" | "alignmentBaseline" | "baselineShift" | "clip" | "clipRule" | "colorInterpolation" | "colorRendering" | "dominantBaseline" | "fill" | "fillOpacity" | "fillRule" | "floodColor" | "floodOpacity" | "glyphOrientationVertical" | "lightingColor" | "markerEnd" | "markerMid" | "markerStart" | "shapeRendering" | "stopColor" | "stopOpacity" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "textAnchor" | "vectorEffect" | "asChild" | "children" | "media" | "path" | "crossOrigin" | "href" | "max" | "method" | "min" | "name" | "size" | "target" | "type" | "id" | "lang" | "tabIndex" | "role" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "accentHeight" | "accumulate" | "additive" | "allowReorder" | "alphabetic" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clipPathUnits" | "colorInterpolationFilters" | "colorProfile" | "contentScriptType" | "contentStyleType" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "divisor" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "filterRes" | "filterUnits" | "focusable" | "format" | "fr" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphRef" | "gradientTransform" | "gradientUnits" | "hanging" | "horizAdvX" | "horizOriginX" | "ideographic" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "limitingConeAngle" | "local" | "markerHeight" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "mathematical" | "mode" | "numOctaves" | "operator" | "orient" | "orientation" | "origin" | "overlinePosition" | "overlineThickness" | "panose1" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rx" | "ry" | "seed" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "strikethroughPosition" | "strikethroughThickness" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textLength" | "to" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "vMathematical" | "widths" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "y" | "yChannelSelector" | "z" | "zoomAndPan" | keyof _mirohq_design_system_stitches.CustomStylesProps> & react.RefAttributes<SVGSVGElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<_mirohq_design_system_primitive.PrimitiveProps<"svg">>, {
|
|
442
450
|
size?: "small" | "medium" | "large" | undefined;
|
|
443
451
|
color?: "background-neutrals" | "background-neutrals-body" | "background-neutrals-container" | "background-neutrals-inverted" | "background-neutrals-inverted-subtle" | "background-neutrals-subtle" | "background-neutrals-subtle-hover" | "background-neutrals-subtle-active" | "background-neutrals-disabled" | "background-neutrals-controls-disabled" | "background-neutrals-scrolls" | "background-neutrals-inactive" | "background-neutrals-inactive-hover" | "background-primary-prominent" | "background-primary-prominent-hover" | "background-primary-prominent-active" | "background-primary-prominent-selected" | "background-primary-subtle" | "background-primary-subtle-hover" | "background-primary-subtle-active" | "background-primary-subtle-selected" | "background-danger-prominent" | "background-danger-prominent-hover" | "background-danger-prominent-active" | "background-danger" | "background-danger-hover" | "background-success" | "background-warning-subtle" | "background-warning-prominent" | "text-neutrals-inverted" | "text-neutrals" | "text-neutrals-subtle" | "text-neutrals-placeholder-only" | "text-neutrals-placeholder" | "text-neutrals-disabled" | "text-primary-inverted" | "text-primary" | "text-primary-hover" | "text-primary-active" | "text-primary-selected" | "text-primary-inverted-subtle" | "text-danger-inverted" | "text-danger" | "text-danger-hover" | "text-danger-active" | "text-success" | "text-warning" | "icon-neutrals-inverted" | "icon-neutrals" | "icon-neutrals-with-text" | "icon-neutrals-subtle" | "icon-neutrals-disabled" | "icon-neutrals-search" | "icon-neutrals-inactive" | "icon-neutrals-inactive-hover" | "icon-primary-inverted" | "icon-primary" | "icon-primary-hover" | "icon-primary-active" | "icon-primary-selected" | "icon-danger-inverted" | "icon-danger" | "icon-danger-hover" | "icon-danger-active" | "icon-success-inverted" | "icon-success" | "icon-warning" | "border-focus-outer" | "border-focus-middle" | "border-focus-inner" | "border-neutrals" | "border-neutrals-hover" | "border-neutrals-active" | "border-neutrals-disabled" | "border-neutrals-controls" | "border-neutrals-controls-disabled" | "border-neutrals-subtle" | "border-neutrals-inverted" | "border-primary" | "border-primary-hover" | "border-primary-active" | "border-primary-inverted" | "border-danger" | "border-success" | "border-warning" | "blue-100" | "blue-200" | "blue-300" | "blue-400" | "blue-500" | "blue-600" | "blue-700" | "blue-800" | "blue-900" | "blue-1000" | "gray-100" | "gray-200" | "gray-300" | "gray-400" | "gray-500" | "gray-600" | "gray-700" | "gray-800" | "gray-900" | "indigo-100" | "indigo-200" | "indigo-300" | "indigo-400" | "indigo-500" | "indigo-600" | "indigo-700" | "indigo-800" | "indigo-900" | "red-100" | "red-200" | "red-300" | "red-400" | "red-500" | "red-600" | "red-700" | "red-800" | "red-900" | "yellow-100" | "yellow-200" | "yellow-300" | "yellow-400" | "yellow-500" | "yellow-600" | "yellow-700" | "yellow-800" | "yellow-900" | "green-100" | "green-200" | "green-300" | "green-400" | "green-500" | "green-600" | "green-700" | "green-800" | "green-900" | "black" | "white" | "transparent" | undefined;
|
|
444
452
|
}, {}>;
|
|
@@ -517,6 +525,8 @@ declare const IconArrowsClockwiseX: ForwardRefExoticComponent<IconProps & RefAtt
|
|
|
517
525
|
|
|
518
526
|
declare const IconArrowsClockwiseY: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
519
527
|
|
|
528
|
+
declare const IconArrowsDownUp: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
529
|
+
|
|
520
530
|
declare const IconArrowsHorizontalLinesTopBottom: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
521
531
|
|
|
522
532
|
declare const IconArrowsInSimple: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -531,6 +541,8 @@ declare const IconArticle: ForwardRefExoticComponent<IconProps & RefAttributes<S
|
|
|
531
541
|
|
|
532
542
|
declare const IconAt: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
533
543
|
|
|
544
|
+
declare const IconBadge: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
545
|
+
|
|
534
546
|
declare const IconBarrel: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
535
547
|
|
|
536
548
|
declare const IconBellSlash: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -827,6 +839,8 @@ declare const IconMagnifyingGlass: ForwardRefExoticComponent<IconProps & RefAttr
|
|
|
827
839
|
|
|
828
840
|
declare const IconMap: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
829
841
|
|
|
842
|
+
declare const IconMegaphone: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
843
|
+
|
|
830
844
|
declare const IconMicrophoneSlash: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
831
845
|
|
|
832
846
|
declare const IconMicrophone: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -841,6 +855,8 @@ declare const IconMonitorPlay: ForwardRefExoticComponent<IconProps & RefAttribut
|
|
|
841
855
|
|
|
842
856
|
declare const IconMonitorStop: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
843
857
|
|
|
858
|
+
declare const IconMoon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
859
|
+
|
|
844
860
|
declare const IconMouse: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
845
861
|
|
|
846
862
|
declare const IconNavigationArrowLines: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -963,6 +979,8 @@ declare const IconRectanglesTwoUser: ForwardRefExoticComponent<IconProps & RefAt
|
|
|
963
979
|
|
|
964
980
|
declare const IconRhombus: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
965
981
|
|
|
982
|
+
declare const IconRocket: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
983
|
+
|
|
966
984
|
declare const IconRssRectangle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
967
985
|
|
|
968
986
|
declare const IconScissors: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -1073,6 +1091,8 @@ declare const IconStroke5: ForwardRefExoticComponent<IconProps & RefAttributes<S
|
|
|
1073
1091
|
|
|
1074
1092
|
declare const IconStroke6: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
1075
1093
|
|
|
1094
|
+
declare const IconSwitch: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
1095
|
+
|
|
1076
1096
|
declare const IconTag: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
1077
1097
|
|
|
1078
1098
|
declare const IconTextAUnderline: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -1115,6 +1135,10 @@ declare const IconTicket: ForwardRefExoticComponent<IconProps & RefAttributes<SV
|
|
|
1115
1135
|
|
|
1116
1136
|
declare const IconTimer: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
1117
1137
|
|
|
1138
|
+
declare const IconToolbar: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
1139
|
+
|
|
1140
|
+
declare const IconTooltip: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
1141
|
+
|
|
1118
1142
|
declare const IconTrackpad: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
1119
1143
|
|
|
1120
1144
|
declare const IconTrapeze: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -1165,4 +1189,4 @@ declare const IconViewSideLeft: ForwardRefExoticComponent<IconProps & RefAttribu
|
|
|
1165
1189
|
|
|
1166
1190
|
declare const IconWallet: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
1167
1191
|
|
|
1168
|
-
export { IconAddLineBottom, IconAddLineRight, IconAlignBottom, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignRight, IconAlignTop, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpRight, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsHorizontalLinesTopBottom, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArticle, IconAt, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconCalendarBlank, IconCamera, IconCard, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCloud, IconCluster, IconClustered, IconCog, IconColumnsThree, IconConeSerpentine, IconCornersThreeEyeOpen, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCrossFat, IconCrossSquare, IconCube, IconCursor, IconCursorFilled, IconCursorLines, IconCursorText, IconCurveSquareCircleArrow, IconDashLeftDownSquareDashRightUp, IconDashLeftUpSquareDashDownRight, IconDashSquareDashHorizontal, IconDashSquareDashVertical, IconDistributeHorizontal, IconDistributeVertical, IconDotsNine, IconDotsThree, IconDotsTwo, IconDownload, IconEnvelope, IconEraser, IconExclamationPointCircle, IconExport, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFlag, IconFolder, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGift, IconGlobe, IconGraduationCap, IconGrid, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHandPointing, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHexagon, IconHighlighter, IconHighlighterUnderline, IconHouse, IconImage, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightbulb, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLinesTopLeftColumnsTwo, IconLink, IconLinkPlus, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconLogin, IconLogout, IconMagnet, IconMagnifyingGlass, IconMagnifyingGlassLightning, IconMap, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMonitorArrow, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMouse, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconOctagon, IconPaintBucket, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenTip, IconPentagon, IconPlaceholder, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusSquare, IconPlusText, IconPresentationArrow, IconPresentationEyeOpen, IconPresentationLine, IconPresentationLinesTwo, IconPresentationLink, IconPresentationNumberOne, IconPresentationPlay, IconPresentationPlus, IconPrevious, IconProhibit, IconProps, IconPushPin, IconQuestionMark, IconQuestionMarkCircle, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLinePen, IconRectanglePlayStack, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRssRectangle, IconScissors, IconScrollbarXy, IconShapes, IconShieldCheck, IconShieldLock, IconShuffle, IconSidebarClosed, IconSidebarOpen, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialFacebook, IconSocialInstagram, IconSocialLinkedin, IconSocialTwitter, IconSocialYoutube, IconSparks, IconSparksFilled, IconSpeakerCross, IconSpeakerHigh, IconSplitVertical, IconSquare, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareLineSquareDashed, IconSquareRounded, IconSquareStarScribble, IconSquareTriangleCirclePlus, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStar, IconStarFilled, IconStickyCorners, IconStickyEyeOpen, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconStroke1, IconStroke2, IconStroke3, IconStroke4, IconStroke5, IconStroke6, IconTag, IconTextAUnderline, IconTextAlignCenter, IconTextAlignLeft, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextCursorEyeOpen, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLinesThree, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTickCircle, IconTicket, IconTimer, IconTrackpad, IconTrapeze, IconTrash, IconTrashSimple, IconTriangle, IconTriangleSquareCircle, IconTrident, IconTrophy, IconUser, IconUserAdd, IconUserArrowRightUp, IconUserEyeOpen, IconUserLoad, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVideoCamera, IconVideoCameraSimple, IconVideoCameraSimpleSlash, IconViewCenter, IconViewSideLeft, IconWallet };
|
|
1192
|
+
export { IconAddLineBottom, IconAddLineRight, IconAlignBottom, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignRight, IconAlignTop, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpRight, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArticle, IconAt, IconBadge, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconCalendarBlank, IconCamera, IconCard, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCloud, IconCluster, IconClustered, IconCog, IconColumnsThree, IconConeSerpentine, IconCornersThreeEyeOpen, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCrossFat, IconCrossSquare, IconCube, IconCursor, IconCursorFilled, IconCursorLines, IconCursorText, IconCurveSquareCircleArrow, IconDashLeftDownSquareDashRightUp, IconDashLeftUpSquareDashDownRight, IconDashSquareDashHorizontal, IconDashSquareDashVertical, IconDistributeHorizontal, IconDistributeVertical, IconDotsNine, IconDotsThree, IconDotsTwo, IconDownload, IconEnvelope, IconEraser, IconExclamationPointCircle, IconExport, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFlag, IconFolder, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGift, IconGlobe, IconGraduationCap, IconGrid, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHandPointing, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHexagon, IconHighlighter, IconHighlighterUnderline, IconHouse, IconImage, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightbulb, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLinesTopLeftColumnsTwo, IconLink, IconLinkPlus, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconLogin, IconLogout, IconMagnet, IconMagnifyingGlass, IconMagnifyingGlassLightning, IconMap, IconMegaphone, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMonitorArrow, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconOctagon, IconPaintBucket, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenTip, IconPentagon, IconPlaceholder, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusSquare, IconPlusText, IconPresentationArrow, IconPresentationEyeOpen, IconPresentationLine, IconPresentationLinesTwo, IconPresentationLink, IconPresentationNumberOne, IconPresentationPlay, IconPresentationPlus, IconPrevious, IconProhibit, IconProps, IconPushPin, IconQuestionMark, IconQuestionMarkCircle, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLinePen, IconRectanglePlayStack, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRocket, IconRssRectangle, IconScissors, IconScrollbarXy, IconShapes, IconShieldCheck, IconShieldLock, IconShuffle, IconSidebarClosed, IconSidebarOpen, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialFacebook, IconSocialInstagram, IconSocialLinkedin, IconSocialTwitter, IconSocialYoutube, IconSparks, IconSparksFilled, IconSpeakerCross, IconSpeakerHigh, IconSplitVertical, IconSquare, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareLineSquareDashed, IconSquareRounded, IconSquareStarScribble, IconSquareTriangleCirclePlus, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStar, IconStarFilled, IconStickyCorners, IconStickyEyeOpen, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconStroke1, IconStroke2, IconStroke3, IconStroke4, IconStroke5, IconStroke6, IconSwitch, IconTag, IconTextAUnderline, IconTextAlignCenter, IconTextAlignLeft, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextCursorEyeOpen, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLinesThree, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTickCircle, IconTicket, IconTimer, IconToolbar, IconTooltip, IconTrackpad, IconTrapeze, IconTrash, IconTrashSimple, IconTriangle, IconTriangleSquareCircle, IconTrident, IconTrophy, IconUser, IconUserAdd, IconUserArrowRightUp, IconUserEyeOpen, IconUserLoad, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVideoCamera, IconVideoCameraSimple, IconVideoCameraSimpleSlash, IconViewCenter, IconViewSideLeft, IconWallet };
|