@cypress-design/react-icon 0.2.0 → 0.4.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/CHANGELOG.md +60 -0
- package/Icon.stories.mdx +32 -2
- package/Icon.tsx +12 -44
- package/IconReact.cy.tsx +38 -0
- package/ReadMe.md +50 -7
- package/compileProperties.ts +24 -18
- package/dist/Icon.d.ts +2 -485
- package/dist/Icon.d.ts.map +1 -1
- package/dist/TreeShakableIcons.d.ts +37 -4
- package/dist/TreeShakableIcons.d.ts.map +1 -1
- package/dist/compileProperties.d.ts +3 -6
- package/dist/compileProperties.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.es.js +580 -182
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +616 -184
- package/dist/index.umd.js.map +1 -1
- package/generate-icons.js +19 -17
- package/index.ts +6 -5
- package/package.json +4 -3
- package/rollup.config.js +2 -2
- package/tsconfig.build.json +1 -1
- package/Icon.cy.tsx +0 -22
package/dist/Icon.d.ts
CHANGED
|
@@ -1,489 +1,6 @@
|
|
|
1
|
-
import
|
|
2
|
-
import type { FunctionComponent } from 'react';
|
|
1
|
+
import type { FunctionComponent, SVGProps } from 'react';
|
|
3
2
|
import type { IconProps } from '@cypress-design/icon-registry';
|
|
4
|
-
declare type SVGPropsWithoutColorsOrSize = Omit<
|
|
3
|
+
declare type SVGPropsWithoutColorsOrSize = Omit<SVGProps<SVGSVGElement>, 'fill' | 'stroke' | 'fillColor' | 'strokeColor' | 'size'>;
|
|
5
4
|
export declare const Icon: FunctionComponent<IconProps & SVGPropsWithoutColorsOrSize>;
|
|
6
|
-
export declare const compileReactIconProperties: ({ body, compiledClasses, size, strokeColor, fillColor, secondaryStrokeColor, secondaryFillColor, ...attributes }: {
|
|
7
|
-
body: string;
|
|
8
|
-
compiledClasses: string[];
|
|
9
|
-
size: string;
|
|
10
|
-
strokeColor?: any;
|
|
11
|
-
fillColor?: any;
|
|
12
|
-
secondaryStrokeColor?: any;
|
|
13
|
-
secondaryFillColor?: any;
|
|
14
|
-
} & SVGPropsWithoutColorsOrSize) => {
|
|
15
|
-
string?: string | number | undefined;
|
|
16
|
-
className?: string | undefined;
|
|
17
|
-
color?: string | undefined;
|
|
18
|
-
height: string | number;
|
|
19
|
-
id?: string | undefined;
|
|
20
|
-
lang?: string | undefined;
|
|
21
|
-
max?: string | number | undefined;
|
|
22
|
-
media?: string | undefined;
|
|
23
|
-
method?: string | undefined;
|
|
24
|
-
min?: string | number | undefined;
|
|
25
|
-
name?: string | undefined;
|
|
26
|
-
style?: React.CSSProperties | undefined;
|
|
27
|
-
target?: string | undefined;
|
|
28
|
-
type?: string | undefined;
|
|
29
|
-
width: string | number;
|
|
30
|
-
role?: React.AriaRole | undefined;
|
|
31
|
-
tabIndex?: number | undefined;
|
|
32
|
-
crossOrigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
33
|
-
accentHeight?: string | number | undefined;
|
|
34
|
-
accumulate?: "none" | "sum" | undefined;
|
|
35
|
-
additive?: "sum" | "replace" | undefined;
|
|
36
|
-
alignmentBaseline?: "alphabetic" | "hanging" | "ideographic" | "mathematical" | "auto" | "baseline" | "before-edge" | "text-before-edge" | "middle" | "central" | "after-edge" | "text-after-edge" | "inherit" | undefined;
|
|
37
|
-
allowReorder?: "no" | "yes" | undefined;
|
|
38
|
-
alphabetic?: string | number | undefined;
|
|
39
|
-
amplitude?: string | number | undefined;
|
|
40
|
-
arabicForm?: "initial" | "medial" | "terminal" | "isolated" | undefined;
|
|
41
|
-
ascent?: string | number | undefined;
|
|
42
|
-
attributeName?: string | undefined;
|
|
43
|
-
attributeType?: string | undefined;
|
|
44
|
-
autoReverse?: (boolean | "true" | "false") | undefined;
|
|
45
|
-
azimuth?: string | number | undefined;
|
|
46
|
-
baseFrequency?: string | number | undefined;
|
|
47
|
-
baselineShift?: string | number | undefined;
|
|
48
|
-
baseProfile?: string | number | undefined;
|
|
49
|
-
bbox?: string | number | undefined;
|
|
50
|
-
begin?: string | number | undefined;
|
|
51
|
-
bias?: string | number | undefined;
|
|
52
|
-
by?: string | number | undefined;
|
|
53
|
-
calcMode?: string | number | undefined;
|
|
54
|
-
capHeight?: string | number | undefined;
|
|
55
|
-
clip?: string | number | undefined;
|
|
56
|
-
clipPath?: string | undefined;
|
|
57
|
-
clipPathUnits?: string | number | undefined;
|
|
58
|
-
clipRule?: string | number | undefined;
|
|
59
|
-
colorInterpolation?: string | number | undefined;
|
|
60
|
-
colorInterpolationFilters?: "auto" | "inherit" | "sRGB" | "linearRGB" | undefined;
|
|
61
|
-
colorProfile?: string | number | undefined;
|
|
62
|
-
colorRendering?: string | number | undefined;
|
|
63
|
-
contentScriptType?: string | number | undefined;
|
|
64
|
-
contentStyleType?: string | number | undefined;
|
|
65
|
-
cursor?: string | number | undefined;
|
|
66
|
-
cx?: string | number | undefined;
|
|
67
|
-
cy?: string | number | undefined;
|
|
68
|
-
d?: string | undefined;
|
|
69
|
-
decelerate?: string | number | undefined;
|
|
70
|
-
descent?: string | number | undefined;
|
|
71
|
-
diffuseConstant?: string | number | undefined;
|
|
72
|
-
direction?: string | number | undefined;
|
|
73
|
-
display?: string | number | undefined;
|
|
74
|
-
divisor?: string | number | undefined;
|
|
75
|
-
dominantBaseline?: string | number | undefined;
|
|
76
|
-
dur?: string | number | undefined;
|
|
77
|
-
dx?: string | number | undefined;
|
|
78
|
-
dy?: string | number | undefined;
|
|
79
|
-
edgeMode?: string | number | undefined;
|
|
80
|
-
elevation?: string | number | undefined;
|
|
81
|
-
enableBackground?: string | number | undefined;
|
|
82
|
-
end?: string | number | undefined;
|
|
83
|
-
exponent?: string | number | undefined;
|
|
84
|
-
externalResourcesRequired?: (boolean | "true" | "false") | undefined;
|
|
85
|
-
fillOpacity?: string | number | undefined;
|
|
86
|
-
fillRule?: "inherit" | "nonzero" | "evenodd" | undefined;
|
|
87
|
-
filter?: string | undefined;
|
|
88
|
-
filterRes?: string | number | undefined;
|
|
89
|
-
filterUnits?: string | number | undefined;
|
|
90
|
-
floodColor?: string | number | undefined;
|
|
91
|
-
floodOpacity?: string | number | undefined;
|
|
92
|
-
focusable?: "auto" | (boolean | "true" | "false") | undefined;
|
|
93
|
-
fontFamily?: string | undefined;
|
|
94
|
-
fontSize?: string | number | undefined;
|
|
95
|
-
fontSizeAdjust?: string | number | undefined;
|
|
96
|
-
fontStretch?: string | number | undefined;
|
|
97
|
-
fontStyle?: string | number | undefined;
|
|
98
|
-
fontVariant?: string | number | undefined;
|
|
99
|
-
fontWeight?: string | number | undefined;
|
|
100
|
-
format?: string | number | undefined;
|
|
101
|
-
fr?: string | number | undefined;
|
|
102
|
-
from?: string | number | undefined;
|
|
103
|
-
fx?: string | number | undefined;
|
|
104
|
-
fy?: string | number | undefined;
|
|
105
|
-
g1?: string | number | undefined;
|
|
106
|
-
g2?: string | number | undefined;
|
|
107
|
-
glyphName?: string | number | undefined;
|
|
108
|
-
glyphOrientationHorizontal?: string | number | undefined;
|
|
109
|
-
glyphOrientationVertical?: string | number | undefined;
|
|
110
|
-
glyphRef?: string | number | undefined;
|
|
111
|
-
gradientTransform?: string | undefined;
|
|
112
|
-
gradientUnits?: string | undefined;
|
|
113
|
-
hanging?: string | number | undefined;
|
|
114
|
-
horizAdvX?: string | number | undefined;
|
|
115
|
-
horizOriginX?: string | number | undefined;
|
|
116
|
-
href?: string | undefined;
|
|
117
|
-
ideographic?: string | number | undefined;
|
|
118
|
-
imageRendering?: string | number | undefined;
|
|
119
|
-
in2?: string | number | undefined;
|
|
120
|
-
in?: string | undefined;
|
|
121
|
-
intercept?: string | number | undefined;
|
|
122
|
-
k1?: string | number | undefined;
|
|
123
|
-
k2?: string | number | undefined;
|
|
124
|
-
k3?: string | number | undefined;
|
|
125
|
-
k4?: string | number | undefined;
|
|
126
|
-
k?: string | number | undefined;
|
|
127
|
-
kernelMatrix?: string | number | undefined;
|
|
128
|
-
kernelUnitLength?: string | number | undefined;
|
|
129
|
-
kerning?: string | number | undefined;
|
|
130
|
-
keyPoints?: string | number | undefined;
|
|
131
|
-
keySplines?: string | number | undefined;
|
|
132
|
-
keyTimes?: string | number | undefined;
|
|
133
|
-
lengthAdjust?: string | number | undefined;
|
|
134
|
-
letterSpacing?: string | number | undefined;
|
|
135
|
-
lightingColor?: string | number | undefined;
|
|
136
|
-
limitingConeAngle?: string | number | undefined;
|
|
137
|
-
local?: string | number | undefined;
|
|
138
|
-
markerEnd?: string | undefined;
|
|
139
|
-
markerHeight?: string | number | undefined;
|
|
140
|
-
markerMid?: string | undefined;
|
|
141
|
-
markerStart?: string | undefined;
|
|
142
|
-
markerUnits?: string | number | undefined;
|
|
143
|
-
markerWidth?: string | number | undefined;
|
|
144
|
-
mask?: string | undefined;
|
|
145
|
-
maskContentUnits?: string | number | undefined;
|
|
146
|
-
maskUnits?: string | number | undefined;
|
|
147
|
-
mathematical?: string | number | undefined;
|
|
148
|
-
mode?: string | number | undefined;
|
|
149
|
-
numOctaves?: string | number | undefined;
|
|
150
|
-
offset?: string | number | undefined;
|
|
151
|
-
opacity?: string | number | undefined;
|
|
152
|
-
operator?: string | number | undefined;
|
|
153
|
-
order?: string | number | undefined;
|
|
154
|
-
orient?: string | number | undefined;
|
|
155
|
-
orientation?: string | number | undefined;
|
|
156
|
-
origin?: string | number | undefined;
|
|
157
|
-
overflow?: string | number | undefined;
|
|
158
|
-
overlinePosition?: string | number | undefined;
|
|
159
|
-
overlineThickness?: string | number | undefined;
|
|
160
|
-
paintOrder?: string | number | undefined;
|
|
161
|
-
panose1?: string | number | undefined;
|
|
162
|
-
path?: string | undefined;
|
|
163
|
-
pathLength?: string | number | undefined;
|
|
164
|
-
patternContentUnits?: string | undefined;
|
|
165
|
-
patternTransform?: string | number | undefined;
|
|
166
|
-
patternUnits?: string | undefined;
|
|
167
|
-
pointerEvents?: string | number | undefined;
|
|
168
|
-
points?: string | undefined;
|
|
169
|
-
pointsAtX?: string | number | undefined;
|
|
170
|
-
pointsAtY?: string | number | undefined;
|
|
171
|
-
pointsAtZ?: string | number | undefined;
|
|
172
|
-
preserveAlpha?: (boolean | "true" | "false") | undefined;
|
|
173
|
-
preserveAspectRatio?: string | undefined;
|
|
174
|
-
primitiveUnits?: string | number | undefined;
|
|
175
|
-
r?: string | number | undefined;
|
|
176
|
-
radius?: string | number | undefined;
|
|
177
|
-
refX?: string | number | undefined;
|
|
178
|
-
refY?: string | number | undefined;
|
|
179
|
-
renderingIntent?: string | number | undefined;
|
|
180
|
-
repeatCount?: string | number | undefined;
|
|
181
|
-
repeatDur?: string | number | undefined;
|
|
182
|
-
requiredExtensions?: string | number | undefined;
|
|
183
|
-
requiredFeatures?: string | number | undefined;
|
|
184
|
-
restart?: string | number | undefined;
|
|
185
|
-
result?: string | undefined;
|
|
186
|
-
rotate?: string | number | undefined;
|
|
187
|
-
rx?: string | number | undefined;
|
|
188
|
-
ry?: string | number | undefined;
|
|
189
|
-
scale?: string | number | undefined;
|
|
190
|
-
seed?: string | number | undefined;
|
|
191
|
-
shapeRendering?: string | number | undefined;
|
|
192
|
-
slope?: string | number | undefined;
|
|
193
|
-
spacing?: string | number | undefined;
|
|
194
|
-
specularConstant?: string | number | undefined;
|
|
195
|
-
specularExponent?: string | number | undefined;
|
|
196
|
-
speed?: string | number | undefined;
|
|
197
|
-
spreadMethod?: string | undefined;
|
|
198
|
-
startOffset?: string | number | undefined;
|
|
199
|
-
stdDeviation?: string | number | undefined;
|
|
200
|
-
stemh?: string | number | undefined;
|
|
201
|
-
stemv?: string | number | undefined;
|
|
202
|
-
stitchTiles?: string | number | undefined;
|
|
203
|
-
stopColor?: string | undefined;
|
|
204
|
-
stopOpacity?: string | number | undefined;
|
|
205
|
-
strikethroughPosition?: string | number | undefined;
|
|
206
|
-
strikethroughThickness?: string | number | undefined;
|
|
207
|
-
strokeDasharray?: string | number | undefined;
|
|
208
|
-
strokeDashoffset?: string | number | undefined;
|
|
209
|
-
strokeLinecap?: "inherit" | "butt" | "round" | "square" | undefined;
|
|
210
|
-
strokeLinejoin?: "inherit" | "round" | "miter" | "bevel" | undefined;
|
|
211
|
-
strokeMiterlimit?: string | number | undefined;
|
|
212
|
-
strokeOpacity?: string | number | undefined;
|
|
213
|
-
strokeWidth?: string | number | undefined;
|
|
214
|
-
surfaceScale?: string | number | undefined;
|
|
215
|
-
systemLanguage?: string | number | undefined;
|
|
216
|
-
tableValues?: string | number | undefined;
|
|
217
|
-
targetX?: string | number | undefined;
|
|
218
|
-
targetY?: string | number | undefined;
|
|
219
|
-
textAnchor?: string | undefined;
|
|
220
|
-
textDecoration?: string | number | undefined;
|
|
221
|
-
textLength?: string | number | undefined;
|
|
222
|
-
textRendering?: string | number | undefined;
|
|
223
|
-
to?: string | number | undefined;
|
|
224
|
-
transform?: string | undefined;
|
|
225
|
-
u1?: string | number | undefined;
|
|
226
|
-
u2?: string | number | undefined;
|
|
227
|
-
underlinePosition?: string | number | undefined;
|
|
228
|
-
underlineThickness?: string | number | undefined;
|
|
229
|
-
unicode?: string | number | undefined;
|
|
230
|
-
unicodeBidi?: string | number | undefined;
|
|
231
|
-
unicodeRange?: string | number | undefined;
|
|
232
|
-
unitsPerEm?: string | number | undefined;
|
|
233
|
-
vAlphabetic?: string | number | undefined;
|
|
234
|
-
values?: string | undefined;
|
|
235
|
-
vectorEffect?: string | number | undefined;
|
|
236
|
-
version?: string | undefined;
|
|
237
|
-
vertAdvY?: string | number | undefined;
|
|
238
|
-
vertOriginX?: string | number | undefined;
|
|
239
|
-
vertOriginY?: string | number | undefined;
|
|
240
|
-
vHanging?: string | number | undefined;
|
|
241
|
-
vIdeographic?: string | number | undefined;
|
|
242
|
-
viewBox?: string | undefined;
|
|
243
|
-
viewTarget?: string | number | undefined;
|
|
244
|
-
visibility?: string | number | undefined;
|
|
245
|
-
vMathematical?: string | number | undefined;
|
|
246
|
-
widths?: string | number | undefined;
|
|
247
|
-
wordSpacing?: string | number | undefined;
|
|
248
|
-
writingMode?: string | number | undefined;
|
|
249
|
-
x1?: string | number | undefined;
|
|
250
|
-
x2?: string | number | undefined;
|
|
251
|
-
x?: string | number | undefined;
|
|
252
|
-
xChannelSelector?: string | undefined;
|
|
253
|
-
xHeight?: string | number | undefined;
|
|
254
|
-
xlinkActuate?: string | undefined;
|
|
255
|
-
xlinkArcrole?: string | undefined;
|
|
256
|
-
xlinkHref?: string | undefined;
|
|
257
|
-
xlinkRole?: string | undefined;
|
|
258
|
-
xlinkShow?: string | undefined;
|
|
259
|
-
xlinkTitle?: string | undefined;
|
|
260
|
-
xlinkType?: string | undefined;
|
|
261
|
-
xmlBase?: string | undefined;
|
|
262
|
-
xmlLang?: string | undefined;
|
|
263
|
-
xmlns?: string | undefined;
|
|
264
|
-
xmlnsXlink?: string | undefined;
|
|
265
|
-
xmlSpace?: string | undefined;
|
|
266
|
-
y1?: string | number | undefined;
|
|
267
|
-
y2?: string | number | undefined;
|
|
268
|
-
y?: string | number | undefined;
|
|
269
|
-
yChannelSelector?: string | undefined;
|
|
270
|
-
z?: string | number | undefined;
|
|
271
|
-
zoomAndPan?: string | undefined;
|
|
272
|
-
'aria-activedescendant'?: string | undefined;
|
|
273
|
-
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
274
|
-
'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
|
|
275
|
-
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
276
|
-
'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
277
|
-
'aria-colcount'?: number | undefined;
|
|
278
|
-
'aria-colindex'?: number | undefined;
|
|
279
|
-
'aria-colspan'?: number | undefined;
|
|
280
|
-
'aria-controls'?: string | undefined;
|
|
281
|
-
'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
282
|
-
'aria-describedby'?: string | undefined;
|
|
283
|
-
'aria-details'?: string | undefined;
|
|
284
|
-
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
285
|
-
'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
286
|
-
'aria-errormessage'?: string | undefined;
|
|
287
|
-
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
288
|
-
'aria-flowto'?: string | undefined;
|
|
289
|
-
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
290
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
|
|
291
|
-
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
292
|
-
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
293
|
-
'aria-keyshortcuts'?: string | undefined;
|
|
294
|
-
'aria-label'?: string | undefined;
|
|
295
|
-
'aria-labelledby'?: string | undefined;
|
|
296
|
-
'aria-level'?: number | undefined;
|
|
297
|
-
'aria-live'?: "off" | "assertive" | "polite" | undefined;
|
|
298
|
-
'aria-modal'?: (boolean | "true" | "false") | undefined;
|
|
299
|
-
'aria-multiline'?: (boolean | "true" | "false") | undefined;
|
|
300
|
-
'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
|
|
301
|
-
'aria-orientation'?: "horizontal" | "vertical" | undefined;
|
|
302
|
-
'aria-owns'?: string | undefined;
|
|
303
|
-
'aria-placeholder'?: string | undefined;
|
|
304
|
-
'aria-posinset'?: number | undefined;
|
|
305
|
-
'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
306
|
-
'aria-readonly'?: (boolean | "true" | "false") | undefined;
|
|
307
|
-
'aria-relevant'?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
308
|
-
'aria-required'?: (boolean | "true" | "false") | undefined;
|
|
309
|
-
'aria-roledescription'?: string | undefined;
|
|
310
|
-
'aria-rowcount'?: number | undefined;
|
|
311
|
-
'aria-rowindex'?: number | undefined;
|
|
312
|
-
'aria-rowspan'?: number | undefined;
|
|
313
|
-
'aria-selected'?: (boolean | "true" | "false") | undefined;
|
|
314
|
-
'aria-setsize'?: number | undefined;
|
|
315
|
-
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
316
|
-
'aria-valuemax'?: number | undefined;
|
|
317
|
-
'aria-valuemin'?: number | undefined;
|
|
318
|
-
'aria-valuenow'?: number | undefined;
|
|
319
|
-
'aria-valuetext'?: string | undefined;
|
|
320
|
-
children?: React.ReactNode;
|
|
321
|
-
dangerouslySetInnerHTML: {
|
|
322
|
-
__html: string;
|
|
323
|
-
};
|
|
324
|
-
onCopy?: React.ClipboardEventHandler<SVGSVGElement> | undefined;
|
|
325
|
-
onCopyCapture?: React.ClipboardEventHandler<SVGSVGElement> | undefined;
|
|
326
|
-
onCut?: React.ClipboardEventHandler<SVGSVGElement> | undefined;
|
|
327
|
-
onCutCapture?: React.ClipboardEventHandler<SVGSVGElement> | undefined;
|
|
328
|
-
onPaste?: React.ClipboardEventHandler<SVGSVGElement> | undefined;
|
|
329
|
-
onPasteCapture?: React.ClipboardEventHandler<SVGSVGElement> | undefined;
|
|
330
|
-
onCompositionEnd?: React.CompositionEventHandler<SVGSVGElement> | undefined;
|
|
331
|
-
onCompositionEndCapture?: React.CompositionEventHandler<SVGSVGElement> | undefined;
|
|
332
|
-
onCompositionStart?: React.CompositionEventHandler<SVGSVGElement> | undefined;
|
|
333
|
-
onCompositionStartCapture?: React.CompositionEventHandler<SVGSVGElement> | undefined;
|
|
334
|
-
onCompositionUpdate?: React.CompositionEventHandler<SVGSVGElement> | undefined;
|
|
335
|
-
onCompositionUpdateCapture?: React.CompositionEventHandler<SVGSVGElement> | undefined;
|
|
336
|
-
onFocus?: React.FocusEventHandler<SVGSVGElement> | undefined;
|
|
337
|
-
onFocusCapture?: React.FocusEventHandler<SVGSVGElement> | undefined;
|
|
338
|
-
onBlur?: React.FocusEventHandler<SVGSVGElement> | undefined;
|
|
339
|
-
onBlurCapture?: React.FocusEventHandler<SVGSVGElement> | undefined;
|
|
340
|
-
onChange?: React.FormEventHandler<SVGSVGElement> | undefined;
|
|
341
|
-
onChangeCapture?: React.FormEventHandler<SVGSVGElement> | undefined;
|
|
342
|
-
onBeforeInput?: React.FormEventHandler<SVGSVGElement> | undefined;
|
|
343
|
-
onBeforeInputCapture?: React.FormEventHandler<SVGSVGElement> | undefined;
|
|
344
|
-
onInput?: React.FormEventHandler<SVGSVGElement> | undefined;
|
|
345
|
-
onInputCapture?: React.FormEventHandler<SVGSVGElement> | undefined;
|
|
346
|
-
onReset?: React.FormEventHandler<SVGSVGElement> | undefined;
|
|
347
|
-
onResetCapture?: React.FormEventHandler<SVGSVGElement> | undefined;
|
|
348
|
-
onSubmit?: React.FormEventHandler<SVGSVGElement> | undefined;
|
|
349
|
-
onSubmitCapture?: React.FormEventHandler<SVGSVGElement> | undefined;
|
|
350
|
-
onInvalid?: React.FormEventHandler<SVGSVGElement> | undefined;
|
|
351
|
-
onInvalidCapture?: React.FormEventHandler<SVGSVGElement> | undefined;
|
|
352
|
-
onLoad?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
353
|
-
onLoadCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
354
|
-
onError?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
355
|
-
onErrorCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
356
|
-
onKeyDown?: React.KeyboardEventHandler<SVGSVGElement> | undefined;
|
|
357
|
-
onKeyDownCapture?: React.KeyboardEventHandler<SVGSVGElement> | undefined;
|
|
358
|
-
onKeyPress?: React.KeyboardEventHandler<SVGSVGElement> | undefined;
|
|
359
|
-
onKeyPressCapture?: React.KeyboardEventHandler<SVGSVGElement> | undefined;
|
|
360
|
-
onKeyUp?: React.KeyboardEventHandler<SVGSVGElement> | undefined;
|
|
361
|
-
onKeyUpCapture?: React.KeyboardEventHandler<SVGSVGElement> | undefined;
|
|
362
|
-
onAbort?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
363
|
-
onAbortCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
364
|
-
onCanPlay?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
365
|
-
onCanPlayCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
366
|
-
onCanPlayThrough?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
367
|
-
onCanPlayThroughCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
368
|
-
onDurationChange?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
369
|
-
onDurationChangeCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
370
|
-
onEmptied?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
371
|
-
onEmptiedCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
372
|
-
onEncrypted?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
373
|
-
onEncryptedCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
374
|
-
onEnded?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
375
|
-
onEndedCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
376
|
-
onLoadedData?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
377
|
-
onLoadedDataCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
378
|
-
onLoadedMetadata?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
379
|
-
onLoadedMetadataCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
380
|
-
onLoadStart?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
381
|
-
onLoadStartCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
382
|
-
onPause?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
383
|
-
onPauseCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
384
|
-
onPlay?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
385
|
-
onPlayCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
386
|
-
onPlaying?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
387
|
-
onPlayingCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
388
|
-
onProgress?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
389
|
-
onProgressCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
390
|
-
onRateChange?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
391
|
-
onRateChangeCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
392
|
-
onSeeked?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
393
|
-
onSeekedCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
394
|
-
onSeeking?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
395
|
-
onSeekingCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
396
|
-
onStalled?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
397
|
-
onStalledCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
398
|
-
onSuspend?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
399
|
-
onSuspendCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
400
|
-
onTimeUpdate?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
401
|
-
onTimeUpdateCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
402
|
-
onVolumeChange?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
403
|
-
onVolumeChangeCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
404
|
-
onWaiting?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
405
|
-
onWaitingCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
406
|
-
onAuxClick?: React.MouseEventHandler<SVGSVGElement> | undefined;
|
|
407
|
-
onAuxClickCapture?: React.MouseEventHandler<SVGSVGElement> | undefined;
|
|
408
|
-
onClick?: React.MouseEventHandler<SVGSVGElement> | undefined;
|
|
409
|
-
onClickCapture?: React.MouseEventHandler<SVGSVGElement> | undefined;
|
|
410
|
-
onContextMenu?: React.MouseEventHandler<SVGSVGElement> | undefined;
|
|
411
|
-
onContextMenuCapture?: React.MouseEventHandler<SVGSVGElement> | undefined;
|
|
412
|
-
onDoubleClick?: React.MouseEventHandler<SVGSVGElement> | undefined;
|
|
413
|
-
onDoubleClickCapture?: React.MouseEventHandler<SVGSVGElement> | undefined;
|
|
414
|
-
onDrag?: React.DragEventHandler<SVGSVGElement> | undefined;
|
|
415
|
-
onDragCapture?: React.DragEventHandler<SVGSVGElement> | undefined;
|
|
416
|
-
onDragEnd?: React.DragEventHandler<SVGSVGElement> | undefined;
|
|
417
|
-
onDragEndCapture?: React.DragEventHandler<SVGSVGElement> | undefined;
|
|
418
|
-
onDragEnter?: React.DragEventHandler<SVGSVGElement> | undefined;
|
|
419
|
-
onDragEnterCapture?: React.DragEventHandler<SVGSVGElement> | undefined;
|
|
420
|
-
onDragExit?: React.DragEventHandler<SVGSVGElement> | undefined;
|
|
421
|
-
onDragExitCapture?: React.DragEventHandler<SVGSVGElement> | undefined;
|
|
422
|
-
onDragLeave?: React.DragEventHandler<SVGSVGElement> | undefined;
|
|
423
|
-
onDragLeaveCapture?: React.DragEventHandler<SVGSVGElement> | undefined;
|
|
424
|
-
onDragOver?: React.DragEventHandler<SVGSVGElement> | undefined;
|
|
425
|
-
onDragOverCapture?: React.DragEventHandler<SVGSVGElement> | undefined;
|
|
426
|
-
onDragStart?: React.DragEventHandler<SVGSVGElement> | undefined;
|
|
427
|
-
onDragStartCapture?: React.DragEventHandler<SVGSVGElement> | undefined;
|
|
428
|
-
onDrop?: React.DragEventHandler<SVGSVGElement> | undefined;
|
|
429
|
-
onDropCapture?: React.DragEventHandler<SVGSVGElement> | undefined;
|
|
430
|
-
onMouseDown?: React.MouseEventHandler<SVGSVGElement> | undefined;
|
|
431
|
-
onMouseDownCapture?: React.MouseEventHandler<SVGSVGElement> | undefined;
|
|
432
|
-
onMouseEnter?: React.MouseEventHandler<SVGSVGElement> | undefined;
|
|
433
|
-
onMouseLeave?: React.MouseEventHandler<SVGSVGElement> | undefined;
|
|
434
|
-
onMouseMove?: React.MouseEventHandler<SVGSVGElement> | undefined;
|
|
435
|
-
onMouseMoveCapture?: React.MouseEventHandler<SVGSVGElement> | undefined;
|
|
436
|
-
onMouseOut?: React.MouseEventHandler<SVGSVGElement> | undefined;
|
|
437
|
-
onMouseOutCapture?: React.MouseEventHandler<SVGSVGElement> | undefined;
|
|
438
|
-
onMouseOver?: React.MouseEventHandler<SVGSVGElement> | undefined;
|
|
439
|
-
onMouseOverCapture?: React.MouseEventHandler<SVGSVGElement> | undefined;
|
|
440
|
-
onMouseUp?: React.MouseEventHandler<SVGSVGElement> | undefined;
|
|
441
|
-
onMouseUpCapture?: React.MouseEventHandler<SVGSVGElement> | undefined;
|
|
442
|
-
onSelect?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
443
|
-
onSelectCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
|
|
444
|
-
onTouchCancel?: React.TouchEventHandler<SVGSVGElement> | undefined;
|
|
445
|
-
onTouchCancelCapture?: React.TouchEventHandler<SVGSVGElement> | undefined;
|
|
446
|
-
onTouchEnd?: React.TouchEventHandler<SVGSVGElement> | undefined;
|
|
447
|
-
onTouchEndCapture?: React.TouchEventHandler<SVGSVGElement> | undefined;
|
|
448
|
-
onTouchMove?: React.TouchEventHandler<SVGSVGElement> | undefined;
|
|
449
|
-
onTouchMoveCapture?: React.TouchEventHandler<SVGSVGElement> | undefined;
|
|
450
|
-
onTouchStart?: React.TouchEventHandler<SVGSVGElement> | undefined;
|
|
451
|
-
onTouchStartCapture?: React.TouchEventHandler<SVGSVGElement> | undefined;
|
|
452
|
-
onPointerDown?: React.PointerEventHandler<SVGSVGElement> | undefined;
|
|
453
|
-
onPointerDownCapture?: React.PointerEventHandler<SVGSVGElement> | undefined;
|
|
454
|
-
onPointerMove?: React.PointerEventHandler<SVGSVGElement> | undefined;
|
|
455
|
-
onPointerMoveCapture?: React.PointerEventHandler<SVGSVGElement> | undefined;
|
|
456
|
-
onPointerUp?: React.PointerEventHandler<SVGSVGElement> | undefined;
|
|
457
|
-
onPointerUpCapture?: React.PointerEventHandler<SVGSVGElement> | undefined;
|
|
458
|
-
onPointerCancel?: React.PointerEventHandler<SVGSVGElement> | undefined;
|
|
459
|
-
onPointerCancelCapture?: React.PointerEventHandler<SVGSVGElement> | undefined;
|
|
460
|
-
onPointerEnter?: React.PointerEventHandler<SVGSVGElement> | undefined;
|
|
461
|
-
onPointerEnterCapture?: React.PointerEventHandler<SVGSVGElement> | undefined;
|
|
462
|
-
onPointerLeave?: React.PointerEventHandler<SVGSVGElement> | undefined;
|
|
463
|
-
onPointerLeaveCapture?: React.PointerEventHandler<SVGSVGElement> | undefined;
|
|
464
|
-
onPointerOver?: React.PointerEventHandler<SVGSVGElement> | undefined;
|
|
465
|
-
onPointerOverCapture?: React.PointerEventHandler<SVGSVGElement> | undefined;
|
|
466
|
-
onPointerOut?: React.PointerEventHandler<SVGSVGElement> | undefined;
|
|
467
|
-
onPointerOutCapture?: React.PointerEventHandler<SVGSVGElement> | undefined;
|
|
468
|
-
onGotPointerCapture?: React.PointerEventHandler<SVGSVGElement> | undefined;
|
|
469
|
-
onGotPointerCaptureCapture?: React.PointerEventHandler<SVGSVGElement> | undefined;
|
|
470
|
-
onLostPointerCapture?: React.PointerEventHandler<SVGSVGElement> | undefined;
|
|
471
|
-
onLostPointerCaptureCapture?: React.PointerEventHandler<SVGSVGElement> | undefined;
|
|
472
|
-
onScroll?: React.UIEventHandler<SVGSVGElement> | undefined;
|
|
473
|
-
onScrollCapture?: React.UIEventHandler<SVGSVGElement> | undefined;
|
|
474
|
-
onWheel?: React.WheelEventHandler<SVGSVGElement> | undefined;
|
|
475
|
-
onWheelCapture?: React.WheelEventHandler<SVGSVGElement> | undefined;
|
|
476
|
-
onAnimationStart?: React.AnimationEventHandler<SVGSVGElement> | undefined;
|
|
477
|
-
onAnimationStartCapture?: React.AnimationEventHandler<SVGSVGElement> | undefined;
|
|
478
|
-
onAnimationEnd?: React.AnimationEventHandler<SVGSVGElement> | undefined;
|
|
479
|
-
onAnimationEndCapture?: React.AnimationEventHandler<SVGSVGElement> | undefined;
|
|
480
|
-
onAnimationIteration?: React.AnimationEventHandler<SVGSVGElement> | undefined;
|
|
481
|
-
onAnimationIterationCapture?: React.AnimationEventHandler<SVGSVGElement> | undefined;
|
|
482
|
-
onTransitionEnd?: React.TransitionEventHandler<SVGSVGElement> | undefined;
|
|
483
|
-
onTransitionEndCapture?: React.TransitionEventHandler<SVGSVGElement> | undefined;
|
|
484
|
-
ref?: React.LegacyRef<SVGSVGElement> | undefined;
|
|
485
|
-
key?: React.Key | null | undefined;
|
|
486
|
-
fill: string;
|
|
487
|
-
};
|
|
488
5
|
export default Icon;
|
|
489
6
|
//# sourceMappingURL=Icon.d.ts.map
|
package/dist/Icon.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Icon.d.ts","sourceRoot":"","sources":["../Icon.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Icon.d.ts","sourceRoot":"","sources":["../Icon.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,iBAAiB,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAExD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,+BAA+B,CAAA;AAG9D,aAAK,2BAA2B,GAAG,IAAI,CACrC,QAAQ,CAAC,aAAa,CAAC,EACvB,MAAM,GAAG,QAAQ,GAAG,WAAW,GAAG,aAAa,GAAG,MAAM,CACzD,CAAA;AAED,eAAO,MAAM,IAAI,EAAE,iBAAiB,CAClC,SAAS,GAAG,2BAA2B,CAMxC,CAAA;AAED,eAAe,IAAI,CAAA"}
|
|
@@ -3,9 +3,14 @@ import * as React from 'react';
|
|
|
3
3
|
export declare const IconActionAddLarge: React.FC<Omit<iconsRegistry.IconActionAddLargeProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
4
4
|
export declare const IconActionAddMedium: React.FC<Omit<iconsRegistry.IconActionAddMediumProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
5
5
|
export declare const IconActionAddSmall: React.FC<Omit<iconsRegistry.IconActionAddSmallProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
6
|
+
export declare const IconActionAddXsmall: React.FC<Omit<iconsRegistry.IconActionAddXsmallProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
6
7
|
export declare const IconActionAdd: React.FC<Omit<iconsRegistry.IconActionAddProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
7
8
|
export declare const IconActionDeleteCircle: React.FC<Omit<iconsRegistry.IconActionDeleteCircleProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
9
|
+
export declare const IconActionDeleteLarge: React.FC<Omit<iconsRegistry.IconActionDeleteLargeProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
10
|
+
export declare const IconActionDeleteMedium: React.FC<Omit<iconsRegistry.IconActionDeleteMediumProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
11
|
+
export declare const IconActionDeleteXlarge: React.FC<Omit<iconsRegistry.IconActionDeleteXlargeProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
8
12
|
export declare const IconActionDelete: React.FC<Omit<iconsRegistry.IconActionDeleteProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
13
|
+
export declare const IconActionDisableCircleSolid: React.FC<Omit<iconsRegistry.IconActionDisableCircleSolidProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
9
14
|
export declare const IconActionExport: React.FC<Omit<iconsRegistry.IconActionExportProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
10
15
|
export declare const IconActionNext: React.FC<Omit<iconsRegistry.IconActionNextProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
11
16
|
export declare const IconActionPlayLarge: React.FC<Omit<iconsRegistry.IconActionPlayLargeProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
@@ -23,10 +28,10 @@ export declare const IconArrowDown: React.FC<Omit<iconsRegistry.IconArrowDownPro
|
|
|
23
28
|
export declare const IconArrowExpand: React.FC<Omit<iconsRegistry.IconArrowExpandProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
24
29
|
export declare const IconArrowLeft: React.FC<Omit<iconsRegistry.IconArrowLeftProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
25
30
|
export declare const IconArrowOutlineDown: React.FC<Omit<iconsRegistry.IconArrowOutlineDownProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
26
|
-
export declare const IconArrowOutlineRight: React.FC<Omit<iconsRegistry.IconArrowOutlineRightProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
27
31
|
export declare const IconArrowRight: React.FC<Omit<iconsRegistry.IconArrowRightProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
28
32
|
export declare const IconArrowUp: React.FC<Omit<iconsRegistry.IconArrowUpProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
29
33
|
export declare const IconCheckmarkOutline: React.FC<Omit<iconsRegistry.IconCheckmarkOutlineProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
34
|
+
export declare const IconCheckmarkSmall: React.FC<Omit<iconsRegistry.IconCheckmarkSmallProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
30
35
|
export declare const IconCheckmarkSolid: React.FC<Omit<iconsRegistry.IconCheckmarkSolidProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
31
36
|
export declare const IconCheckmark: React.FC<Omit<iconsRegistry.IconCheckmarkProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
32
37
|
export declare const IconChevronDownDouble: React.FC<Omit<iconsRegistry.IconChevronDownDoubleProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
@@ -38,7 +43,6 @@ export declare const IconChevronLeftSmall: React.FC<Omit<iconsRegistry.IconChevr
|
|
|
38
43
|
export declare const IconChevronRightDouble: React.FC<Omit<iconsRegistry.IconChevronRightDoubleProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
39
44
|
export declare const IconChevronRightLarge: React.FC<Omit<iconsRegistry.IconChevronRightLargeProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
40
45
|
export declare const IconChevronRightSmall: React.FC<Omit<iconsRegistry.IconChevronRightSmallProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
41
|
-
export declare const IconChevronRight: React.FC<Omit<iconsRegistry.IconChevronRightProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
42
46
|
export declare const IconChevronUpDouble: React.FC<Omit<iconsRegistry.IconChevronUpDoubleProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
43
47
|
export declare const IconChevronUpLarge: React.FC<Omit<iconsRegistry.IconChevronUpLargeProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
44
48
|
export declare const IconChevronUpSmall: React.FC<Omit<iconsRegistry.IconChevronUpSmallProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
@@ -82,6 +86,7 @@ export declare const IconObjectBook: React.FC<Omit<iconsRegistry.IconObjectBookP
|
|
|
82
86
|
export declare const IconObjectBookmark: React.FC<Omit<iconsRegistry.IconObjectBookmarkProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
83
87
|
export declare const IconObjectBoxOpen: React.FC<Omit<iconsRegistry.IconObjectBoxOpenProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
84
88
|
export declare const IconObjectBox: React.FC<Omit<iconsRegistry.IconObjectBoxProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
89
|
+
export declare const IconObjectBriefcase: React.FC<Omit<iconsRegistry.IconObjectBriefcaseProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
85
90
|
export declare const IconObjectChainLink: React.FC<Omit<iconsRegistry.IconObjectChainLinkProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
86
91
|
export declare const IconObjectFolderDark: React.FC<Omit<iconsRegistry.IconObjectFolderDarkProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
87
92
|
export declare const IconObjectFolderLight: React.FC<Omit<iconsRegistry.IconObjectFolderLightProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
@@ -93,8 +98,33 @@ export declare const IconObjectPaperAirplane: React.FC<Omit<iconsRegistry.IconOb
|
|
|
93
98
|
export declare const IconObjectPinModern: React.FC<Omit<iconsRegistry.IconObjectPinModernProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
94
99
|
export declare const IconObjectRuler: React.FC<Omit<iconsRegistry.IconObjectRulerProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
95
100
|
export declare const IconSecurityKey: React.FC<Omit<iconsRegistry.IconSecurityKeyProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
101
|
+
export declare const IconSecurityLockLocked: React.FC<Omit<iconsRegistry.IconSecurityLockLockedProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
96
102
|
export declare const IconShapeLightningBolt: React.FC<Omit<iconsRegistry.IconShapeLightningBoltProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
103
|
+
export declare const IconStatusCancelledOutline: React.FC<Omit<iconsRegistry.IconStatusCancelledOutlineProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
104
|
+
export declare const IconStatusCancelledSimple: React.FC<Omit<iconsRegistry.IconStatusCancelledSimpleProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
105
|
+
export declare const IconStatusCancelledSolid: React.FC<Omit<iconsRegistry.IconStatusCancelledSolidProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
106
|
+
export declare const IconStatusErroredOutline: React.FC<Omit<iconsRegistry.IconStatusErroredOutlineProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
107
|
+
export declare const IconStatusErroredSimple: React.FC<Omit<iconsRegistry.IconStatusErroredSimpleProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
108
|
+
export declare const IconStatusErroredSolid: React.FC<Omit<iconsRegistry.IconStatusErroredSolidProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
109
|
+
export declare const IconStatusFailedOutline: React.FC<Omit<iconsRegistry.IconStatusFailedOutlineProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
110
|
+
export declare const IconStatusFailedSimple: React.FC<Omit<iconsRegistry.IconStatusFailedSimpleProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
111
|
+
export declare const IconStatusFailedSolid: React.FC<Omit<iconsRegistry.IconStatusFailedSolidProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
112
|
+
export declare const IconStatusPassedOutline: React.FC<Omit<iconsRegistry.IconStatusPassedOutlineProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
113
|
+
export declare const IconStatusPassedSimple: React.FC<Omit<iconsRegistry.IconStatusPassedSimpleProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
114
|
+
export declare const IconStatusPassedSolid: React.FC<Omit<iconsRegistry.IconStatusPassedSolidProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
115
|
+
export declare const IconStatusPendingOutline: React.FC<Omit<iconsRegistry.IconStatusPendingOutlineProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
116
|
+
export declare const IconStatusPendingSimple: React.FC<Omit<iconsRegistry.IconStatusPendingSimpleProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
117
|
+
export declare const IconStatusPlaceholderSimple: React.FC<Omit<iconsRegistry.IconStatusPlaceholderSimpleProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
118
|
+
export declare const IconStatusPlaceholderSolid: React.FC<Omit<iconsRegistry.IconStatusPlaceholderSolidProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
119
|
+
export declare const IconStatusQueuedOutline: React.FC<Omit<iconsRegistry.IconStatusQueuedOutlineProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
120
|
+
export declare const IconStatusQueuedSimple: React.FC<Omit<iconsRegistry.IconStatusQueuedSimpleProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
121
|
+
export declare const IconStatusRunningOutline: React.FC<Omit<iconsRegistry.IconStatusRunningOutlineProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
122
|
+
export declare const IconStatusRunningSimple: React.FC<Omit<iconsRegistry.IconStatusRunningSimpleProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
123
|
+
export declare const IconStatusSkippedOutline: React.FC<Omit<iconsRegistry.IconStatusSkippedOutlineProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
124
|
+
export declare const IconStatusSkippedSimple: React.FC<Omit<iconsRegistry.IconStatusSkippedSimpleProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
125
|
+
export declare const IconTechnologyBranchHTall: React.FC<Omit<iconsRegistry.IconTechnologyBranchHTallProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
97
126
|
export declare const IconTechnologyBranchH: React.FC<Omit<iconsRegistry.IconTechnologyBranchHProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
127
|
+
export declare const IconTechnologyBrowserTesting2: React.FC<Omit<iconsRegistry.IconTechnologyBrowserTesting2Props, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
98
128
|
export declare const IconTechnologyCodeEditor: React.FC<Omit<iconsRegistry.IconTechnologyCodeEditorProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
99
129
|
export declare const IconTechnologyCommandLine: React.FC<Omit<iconsRegistry.IconTechnologyCommandLineProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
100
130
|
export declare const IconTechnologyCypress: React.FC<Omit<iconsRegistry.IconTechnologyCypressProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
@@ -103,19 +133,22 @@ export declare const IconTechnologyDashboardFail: React.FC<Omit<iconsRegistry.Ic
|
|
|
103
133
|
export declare const IconTechnologyDollar: React.FC<Omit<iconsRegistry.IconTechnologyDollarProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
104
134
|
export declare const IconTechnologyDragProject: React.FC<Omit<iconsRegistry.IconTechnologyDragProjectProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
105
135
|
export declare const IconTechnologyElementSelector: React.FC<Omit<iconsRegistry.IconTechnologyElementSelectorProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
136
|
+
export declare const IconTechnologyImageScreenshot: React.FC<Omit<iconsRegistry.IconTechnologyImageScreenshotProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
106
137
|
export declare const IconTechnologyInfinityLoop: React.FC<Omit<iconsRegistry.IconTechnologyInfinityLoopProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
107
138
|
export declare const IconTechnologyLockedProject: React.FC<Omit<iconsRegistry.IconTechnologyLockedProjectProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
108
139
|
export declare const IconTechnologyOctothorpe: React.FC<Omit<iconsRegistry.IconTechnologyOctothorpeProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
140
|
+
export declare const IconTechnologyPullRequest: React.FC<Omit<iconsRegistry.IconTechnologyPullRequestProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
141
|
+
export declare const IconTechnologyServer: React.FC<Omit<iconsRegistry.IconTechnologyServerProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
142
|
+
export declare const IconTechnologyTerminalLog: React.FC<Omit<iconsRegistry.IconTechnologyTerminalLogProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
109
143
|
export declare const IconTechnologyTerminal: React.FC<Omit<iconsRegistry.IconTechnologyTerminalProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
110
144
|
export declare const IconTechnologyTestResults: React.FC<Omit<iconsRegistry.IconTechnologyTestResultsProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
111
145
|
export declare const IconTestingTypeComponentSolid: React.FC<Omit<iconsRegistry.IconTestingTypeComponentSolidProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
112
146
|
export declare const IconTestingTypeComponent: React.FC<Omit<iconsRegistry.IconTestingTypeComponentProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
113
|
-
export declare const IconTestingTypeE2ESolidSimple: React.FC<Omit<iconsRegistry.IconTestingTypeE2ESolidSimpleProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
114
147
|
export declare const IconTestingTypeE2ESolid: React.FC<Omit<iconsRegistry.IconTestingTypeE2ESolidProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
115
148
|
export declare const IconTestingTypeE2E: React.FC<Omit<iconsRegistry.IconTestingTypeE2EProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
149
|
+
export declare const IconTimeStopwatch: React.FC<Omit<iconsRegistry.IconTimeStopwatchProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
116
150
|
export declare const IconUserGeneralOutline: React.FC<Omit<iconsRegistry.IconUserGeneralOutlineProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
117
151
|
export declare const IconUserGeneralSolid: React.FC<Omit<iconsRegistry.IconUserGeneralSolidProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
118
|
-
export declare const IconUserOutline: React.FC<Omit<iconsRegistry.IconUserOutlineProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
119
152
|
export declare const IconViewList: React.FC<Omit<iconsRegistry.IconViewListProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
120
153
|
export declare const IconViewTreeAlt: React.FC<Omit<iconsRegistry.IconViewTreeAltProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|
|
121
154
|
export declare const IconWarningCircle: React.FC<Omit<iconsRegistry.IconWarningCircleProps, 'name'> & React.SVGProps<SVGSVGElement>>;
|