demio-ui 1.0.35 → 1.0.37
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/cjs/index.js +2 -2
- package/dist/cjs/types/src/components/Input/Input.d.ts +16 -15
- package/dist/cjs/types/src/components/Popover/Popover.d.ts +8 -0
- package/dist/cjs/types/src/components/Popover/index.d.ts +1 -0
- package/dist/cjs/types/src/components/index.d.ts +1 -0
- package/dist/cjs/types/src/icons/index.d.ts +4 -3
- package/dist/esm/index.js +3 -3
- package/dist/esm/types/src/components/Input/Input.d.ts +16 -15
- package/dist/esm/types/src/components/Popover/Popover.d.ts +8 -0
- package/dist/esm/types/src/components/Popover/index.d.ts +1 -0
- package/dist/esm/types/src/components/index.d.ts +1 -0
- package/dist/esm/types/src/icons/index.d.ts +4 -3
- package/dist/types.d.ts +196 -173
- package/package.json +2 -1
- package/dist/cjs/types/src/components/ScrollArea/ScrollArea.d.ts +0 -6
- package/dist/cjs/types/src/components/ScrollArea/index.d.ts +0 -1
- package/dist/esm/types/src/components/ScrollArea/ScrollArea.d.ts +0 -6
- package/dist/esm/types/src/components/ScrollArea/index.d.ts +0 -1
package/dist/types.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import React__default, { MouseEventHandler } from 'react';
|
|
2
|
+
import React__default, { MouseEventHandler, FC } from 'react';
|
|
3
3
|
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
4
4
|
|
|
5
|
-
type Props$
|
|
5
|
+
type Props$c = {
|
|
6
6
|
disabled?: boolean;
|
|
7
7
|
children?: string;
|
|
8
8
|
size?: 'small' | 'medium' | 'large';
|
|
@@ -17,9 +17,9 @@ type Props$b = {
|
|
|
17
17
|
/**
|
|
18
18
|
* Button component documentation.
|
|
19
19
|
**/
|
|
20
|
-
declare const Button: React__default.ForwardRefExoticComponent<Props$
|
|
20
|
+
declare const Button: React__default.ForwardRefExoticComponent<Props$c & React__default.RefAttributes<HTMLButtonElement>>;
|
|
21
21
|
|
|
22
|
-
type Props$
|
|
22
|
+
type Props$b = {
|
|
23
23
|
children: string | React__default.ReactNode;
|
|
24
24
|
open: boolean;
|
|
25
25
|
onOpenChange: (open: boolean) => void;
|
|
@@ -35,7 +35,7 @@ type Props$a = {
|
|
|
35
35
|
- Esc closes the component automatically.
|
|
36
36
|
- [Accessibility and Keyboard Interactions](https://www.radix-ui.com/docs/primitives/components/dialog#accessibility)
|
|
37
37
|
**/
|
|
38
|
-
declare function Modal({ children, open, onOpenChange, title, hideCloseButton, contentClassName, maxHeight, width, }: Props$
|
|
38
|
+
declare function Modal({ children, open, onOpenChange, title, hideCloseButton, contentClassName, maxHeight, width, }: Props$b): React__default.JSX.Element;
|
|
39
39
|
|
|
40
40
|
type TabsRootProps = {
|
|
41
41
|
value: string;
|
|
@@ -67,7 +67,7 @@ type TabsContentProps = {
|
|
|
67
67
|
};
|
|
68
68
|
declare function TabsContent({ children, value, className }: TabsContentProps): React__default.JSX.Element;
|
|
69
69
|
|
|
70
|
-
type Props$
|
|
70
|
+
type Props$a = {
|
|
71
71
|
checked?: boolean;
|
|
72
72
|
onCheckedChange?: (checked: boolean) => void;
|
|
73
73
|
className?: string;
|
|
@@ -80,9 +80,9 @@ type Props$9 = {
|
|
|
80
80
|
/**
|
|
81
81
|
* Accessibility [Keyboard Interactions](https://www.radix-ui.com/docs/primitives/components/switch#keyboard-interactions)
|
|
82
82
|
**/
|
|
83
|
-
declare function Switch({ className, id, disabled, required, name, ...props }: Props$
|
|
83
|
+
declare function Switch({ className, id, disabled, required, name, ...props }: Props$a): React__default.JSX.Element;
|
|
84
84
|
|
|
85
|
-
type Props$
|
|
85
|
+
type Props$9 = {
|
|
86
86
|
children: React__default.ReactNode;
|
|
87
87
|
content: React__default.ReactNode | string;
|
|
88
88
|
open?: boolean;
|
|
@@ -100,7 +100,7 @@ type Props$8 = {
|
|
|
100
100
|
/**
|
|
101
101
|
* Accessibility [Keyboard Interactions](https://www.radix-ui.com/docs/primitives/components/tooltip#keyboard-interactions)
|
|
102
102
|
**/
|
|
103
|
-
declare function Tooltip({ children, content, open, defaultOpen, onOpenChange, side, align, className, delayDuration, sideOffset, isPortal, ...props }: Props$
|
|
103
|
+
declare function Tooltip({ children, content, open, defaultOpen, onOpenChange, side, align, className, delayDuration, sideOffset, isPortal, ...props }: Props$9): string | number | boolean | Iterable<React__default.ReactNode> | React__default.JSX.Element | null | undefined;
|
|
104
104
|
|
|
105
105
|
type SelectProps = {
|
|
106
106
|
children: React__default.ReactNode;
|
|
@@ -122,23 +122,23 @@ type SelectItemProps = {
|
|
|
122
122
|
declare const SelectItem: React__default.ForwardRefExoticComponent<SelectItemProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
123
123
|
declare const SelectItemText: React__default.ForwardRefExoticComponent<SelectPrimitive.SelectItemTextProps & React__default.RefAttributes<HTMLSpanElement>>;
|
|
124
124
|
|
|
125
|
-
type Props$
|
|
125
|
+
type Props$8 = {
|
|
126
126
|
htmlFor: string;
|
|
127
127
|
children: React__default.ReactNode;
|
|
128
128
|
className?: string;
|
|
129
129
|
weight?: 'regular' | 'semiBold';
|
|
130
130
|
};
|
|
131
|
-
declare function Label({ htmlFor, children, className, weight }: Props$
|
|
131
|
+
declare function Label({ htmlFor, children, className, weight }: Props$8): React__default.JSX.Element;
|
|
132
132
|
|
|
133
|
-
type Props$
|
|
133
|
+
type Props$7 = {
|
|
134
134
|
children: React__default.ReactNode;
|
|
135
135
|
position?: 'horizontal' | 'vertical';
|
|
136
136
|
justify?: 'between' | 'start';
|
|
137
137
|
alignItems?: 'start' | 'stretch';
|
|
138
138
|
};
|
|
139
|
-
declare function FormGroup({ children, position, justify, alignItems, }: Props$
|
|
139
|
+
declare function FormGroup({ children, position, justify, alignItems, }: Props$7): React__default.JSX.Element;
|
|
140
140
|
|
|
141
|
-
type Props$
|
|
141
|
+
type Props$6 = {
|
|
142
142
|
progress: number;
|
|
143
143
|
max?: number;
|
|
144
144
|
};
|
|
@@ -146,9 +146,9 @@ type Props$5 = {
|
|
|
146
146
|
* Progress component
|
|
147
147
|
* - Provides context for assistive technology to read the progress of a task.
|
|
148
148
|
**/
|
|
149
|
-
declare function Progress({ max, progress, ...props }: Props$
|
|
149
|
+
declare function Progress({ max, progress, ...props }: Props$6): React__default.JSX.Element;
|
|
150
150
|
|
|
151
|
-
type Props$
|
|
151
|
+
type Props$5 = {
|
|
152
152
|
onOpenChange: (open: boolean) => void;
|
|
153
153
|
open: boolean;
|
|
154
154
|
actionText?: string;
|
|
@@ -158,9 +158,9 @@ type Props$4 = {
|
|
|
158
158
|
title?: string;
|
|
159
159
|
description?: string;
|
|
160
160
|
};
|
|
161
|
-
declare function Alert({ onOpenChange, open, actionText, onActionClick, cancelText, onCancelClick, title, description, }: Props$
|
|
161
|
+
declare function Alert({ onOpenChange, open, actionText, onActionClick, cancelText, onCancelClick, title, description, }: Props$5): React__default.JSX.Element;
|
|
162
162
|
|
|
163
|
-
type Props$
|
|
163
|
+
type Props$4 = {
|
|
164
164
|
children: React__default.ReactNode;
|
|
165
165
|
disabled?: boolean;
|
|
166
166
|
id: string;
|
|
@@ -177,9 +177,9 @@ type Props$3 = {
|
|
|
177
177
|
/**
|
|
178
178
|
* Checkbox component documentation.
|
|
179
179
|
**/
|
|
180
|
-
declare function Checkbox({ children, id, checked, onChange, disabled, defaultChecked, name, value, ...props }: Props$
|
|
180
|
+
declare function Checkbox({ children, id, checked, onChange, disabled, defaultChecked, name, value, ...props }: Props$4): React__default.JSX.Element;
|
|
181
181
|
|
|
182
|
-
type Props$
|
|
182
|
+
type Props$3 = {
|
|
183
183
|
items: {
|
|
184
184
|
id: string;
|
|
185
185
|
label: string;
|
|
@@ -194,44 +194,52 @@ type Props$2 = {
|
|
|
194
194
|
disabled?: boolean;
|
|
195
195
|
value?: string;
|
|
196
196
|
};
|
|
197
|
-
declare function RadioGroup({ items, error, defaultValue, ariaLabel, hint, onChange, disabled, value, ...props }: Props$
|
|
197
|
+
declare function RadioGroup({ items, error, defaultValue, ariaLabel, hint, onChange, disabled, value, ...props }: Props$3): React__default.JSX.Element;
|
|
198
198
|
|
|
199
|
-
type Props$
|
|
199
|
+
type Props$2 = {
|
|
200
200
|
children: React__default.ReactNode;
|
|
201
201
|
type?: 'hint' | 'error';
|
|
202
202
|
className?: string;
|
|
203
203
|
};
|
|
204
|
-
declare function InputHint({ children, type, className }: Props$
|
|
204
|
+
declare function InputHint({ children, type, className }: Props$2): React__default.JSX.Element;
|
|
205
205
|
|
|
206
|
-
type Props = {
|
|
207
|
-
|
|
206
|
+
type Props$1 = {
|
|
207
|
+
autoComplete?: 'off' | 'on';
|
|
208
208
|
className?: string;
|
|
209
|
-
|
|
210
|
-
placeholder?: string;
|
|
211
|
-
label?: string;
|
|
212
|
-
id: string;
|
|
213
|
-
onChange?: (event: React__default.ChangeEvent<HTMLInputElement>) => void;
|
|
214
|
-
value?: string;
|
|
209
|
+
counterVisibilityLimit?: number;
|
|
215
210
|
defaultValue?: string;
|
|
216
|
-
required?: boolean;
|
|
217
|
-
hint?: string;
|
|
218
211
|
disabled?: boolean;
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
212
|
+
endAdornment?: React__default.ReactNode;
|
|
213
|
+
endAdornmentClassName?: string;
|
|
214
|
+
errorMessage?: string;
|
|
215
|
+
hint?: string;
|
|
216
|
+
id: string;
|
|
217
|
+
label?: string;
|
|
222
218
|
maxLength?: number;
|
|
223
|
-
|
|
224
|
-
|
|
219
|
+
name?: string;
|
|
220
|
+
onChange?: (event: React__default.ChangeEvent<HTMLInputElement>) => void;
|
|
225
221
|
onBlur?: (event: React__default.FocusEvent<HTMLInputElement>) => void;
|
|
222
|
+
onFocus?: (event: React__default.FocusEvent<HTMLInputElement>) => void;
|
|
223
|
+
optionalText?: string;
|
|
224
|
+
placeholder?: string;
|
|
225
|
+
required?: boolean;
|
|
226
226
|
startAdornment?: React__default.ReactNode;
|
|
227
|
-
|
|
227
|
+
type?: 'text' | 'password' | 'email' | 'number' | 'search' | 'tel' | 'url';
|
|
228
|
+
value?: string;
|
|
228
229
|
};
|
|
229
|
-
declare const Input: React__default.ForwardRefExoticComponent<Props & React__default.RefAttributes<HTMLInputElement>>;
|
|
230
|
+
declare const Input: React__default.ForwardRefExoticComponent<Props$1 & React__default.RefAttributes<HTMLInputElement>>;
|
|
230
231
|
|
|
231
|
-
|
|
232
|
-
|
|
232
|
+
type Props = {
|
|
233
|
+
align: 'center' | 'start' | 'end';
|
|
234
|
+
content: React__default.ReactNode;
|
|
235
|
+
children: React__default.ReactNode;
|
|
236
|
+
};
|
|
237
|
+
declare const Popover: FC<Props>;
|
|
238
|
+
|
|
239
|
+
var _path$t, _g$p;
|
|
240
|
+
function _extends$t() { _extends$t = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$t.apply(this, arguments); }
|
|
233
241
|
var SvgAdd = function SvgAdd(props) {
|
|
234
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
242
|
+
return /*#__PURE__*/React.createElement("svg", _extends$t({
|
|
235
243
|
xmlns: "http://www.w3.org/2000/svg",
|
|
236
244
|
width: 24,
|
|
237
245
|
height: 24,
|
|
@@ -246,7 +254,7 @@ var SvgAdd = function SvgAdd(props) {
|
|
|
246
254
|
style: {
|
|
247
255
|
maskType: "alpha"
|
|
248
256
|
}
|
|
249
|
-
}, _path$
|
|
257
|
+
}, _path$t || (_path$t = /*#__PURE__*/React.createElement("path", {
|
|
250
258
|
fill: "#D9D9D9",
|
|
251
259
|
d: "M0 0h24v24H0z"
|
|
252
260
|
}))), _g$p || (_g$p = /*#__PURE__*/React.createElement("g", {
|
|
@@ -257,10 +265,10 @@ var SvgAdd = function SvgAdd(props) {
|
|
|
257
265
|
}))));
|
|
258
266
|
};
|
|
259
267
|
|
|
260
|
-
var _path$
|
|
261
|
-
function _extends$
|
|
268
|
+
var _path$s, _g$o;
|
|
269
|
+
function _extends$s() { _extends$s = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$s.apply(this, arguments); }
|
|
262
270
|
var SvgKeyboardArrowDown = function SvgKeyboardArrowDown(props) {
|
|
263
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
271
|
+
return /*#__PURE__*/React.createElement("svg", _extends$s({
|
|
264
272
|
xmlns: "http://www.w3.org/2000/svg",
|
|
265
273
|
fill: "none",
|
|
266
274
|
viewBox: "0 0 24 24"
|
|
@@ -274,7 +282,7 @@ var SvgKeyboardArrowDown = function SvgKeyboardArrowDown(props) {
|
|
|
274
282
|
style: {
|
|
275
283
|
maskType: "alpha"
|
|
276
284
|
}
|
|
277
|
-
}, _path$
|
|
285
|
+
}, _path$s || (_path$s = /*#__PURE__*/React.createElement("path", {
|
|
278
286
|
fill: "#D9D9D9",
|
|
279
287
|
d: "M0 0h24v24H0z"
|
|
280
288
|
}))), _g$o || (_g$o = /*#__PURE__*/React.createElement("g", {
|
|
@@ -285,10 +293,10 @@ var SvgKeyboardArrowDown = function SvgKeyboardArrowDown(props) {
|
|
|
285
293
|
}))));
|
|
286
294
|
};
|
|
287
295
|
|
|
288
|
-
var _path$
|
|
289
|
-
function _extends$
|
|
296
|
+
var _path$r, _g$n;
|
|
297
|
+
function _extends$r() { _extends$r = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$r.apply(this, arguments); }
|
|
290
298
|
var SvgBlock = function SvgBlock(props) {
|
|
291
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
299
|
+
return /*#__PURE__*/React.createElement("svg", _extends$r({
|
|
292
300
|
xmlns: "http://www.w3.org/2000/svg",
|
|
293
301
|
width: 24,
|
|
294
302
|
height: 24,
|
|
@@ -303,7 +311,7 @@ var SvgBlock = function SvgBlock(props) {
|
|
|
303
311
|
style: {
|
|
304
312
|
maskType: "alpha"
|
|
305
313
|
}
|
|
306
|
-
}, _path$
|
|
314
|
+
}, _path$r || (_path$r = /*#__PURE__*/React.createElement("path", {
|
|
307
315
|
fill: "#D9D9D9",
|
|
308
316
|
d: "M0 0h24v24H0z"
|
|
309
317
|
}))), _g$n || (_g$n = /*#__PURE__*/React.createElement("g", {
|
|
@@ -314,10 +322,10 @@ var SvgBlock = function SvgBlock(props) {
|
|
|
314
322
|
}))));
|
|
315
323
|
};
|
|
316
324
|
|
|
317
|
-
var _path$
|
|
318
|
-
function _extends$
|
|
325
|
+
var _path$q, _g$m;
|
|
326
|
+
function _extends$q() { _extends$q = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$q.apply(this, arguments); }
|
|
319
327
|
var SvgBlurOn = function SvgBlurOn(props) {
|
|
320
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
328
|
+
return /*#__PURE__*/React.createElement("svg", _extends$q({
|
|
321
329
|
xmlns: "http://www.w3.org/2000/svg",
|
|
322
330
|
width: 24,
|
|
323
331
|
height: 24,
|
|
@@ -332,7 +340,7 @@ var SvgBlurOn = function SvgBlurOn(props) {
|
|
|
332
340
|
style: {
|
|
333
341
|
maskType: "alpha"
|
|
334
342
|
}
|
|
335
|
-
}, _path$
|
|
343
|
+
}, _path$q || (_path$q = /*#__PURE__*/React.createElement("path", {
|
|
336
344
|
fill: "#D9D9D9",
|
|
337
345
|
d: "M0 0h24v24H0z"
|
|
338
346
|
}))), _g$m || (_g$m = /*#__PURE__*/React.createElement("g", {
|
|
@@ -343,10 +351,10 @@ var SvgBlurOn = function SvgBlurOn(props) {
|
|
|
343
351
|
}))));
|
|
344
352
|
};
|
|
345
353
|
|
|
346
|
-
var _path$
|
|
347
|
-
function _extends$
|
|
354
|
+
var _path$p, _g$l;
|
|
355
|
+
function _extends$p() { _extends$p = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$p.apply(this, arguments); }
|
|
348
356
|
var SvgCached = function SvgCached(props) {
|
|
349
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
357
|
+
return /*#__PURE__*/React.createElement("svg", _extends$p({
|
|
350
358
|
xmlns: "http://www.w3.org/2000/svg",
|
|
351
359
|
width: 24,
|
|
352
360
|
height: 24,
|
|
@@ -361,7 +369,7 @@ var SvgCached = function SvgCached(props) {
|
|
|
361
369
|
style: {
|
|
362
370
|
maskType: "alpha"
|
|
363
371
|
}
|
|
364
|
-
}, _path$
|
|
372
|
+
}, _path$p || (_path$p = /*#__PURE__*/React.createElement("path", {
|
|
365
373
|
fill: "#D9D9D9",
|
|
366
374
|
d: "M0 0h24v24H0z"
|
|
367
375
|
}))), _g$l || (_g$l = /*#__PURE__*/React.createElement("g", {
|
|
@@ -372,10 +380,10 @@ var SvgCached = function SvgCached(props) {
|
|
|
372
380
|
}))));
|
|
373
381
|
};
|
|
374
382
|
|
|
375
|
-
var _path$
|
|
376
|
-
function _extends$
|
|
383
|
+
var _path$o, _g$k;
|
|
384
|
+
function _extends$o() { _extends$o = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$o.apply(this, arguments); }
|
|
377
385
|
var SvgCheckbox = function SvgCheckbox(props) {
|
|
378
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
386
|
+
return /*#__PURE__*/React.createElement("svg", _extends$o({
|
|
379
387
|
xmlns: "http://www.w3.org/2000/svg",
|
|
380
388
|
width: 24,
|
|
381
389
|
height: 24,
|
|
@@ -390,7 +398,7 @@ var SvgCheckbox = function SvgCheckbox(props) {
|
|
|
390
398
|
style: {
|
|
391
399
|
maskType: "alpha"
|
|
392
400
|
}
|
|
393
|
-
}, _path$
|
|
401
|
+
}, _path$o || (_path$o = /*#__PURE__*/React.createElement("path", {
|
|
394
402
|
fill: "#D9D9D9",
|
|
395
403
|
d: "M0 0h24v24H0z"
|
|
396
404
|
}))), _g$k || (_g$k = /*#__PURE__*/React.createElement("g", {
|
|
@@ -401,10 +409,10 @@ var SvgCheckbox = function SvgCheckbox(props) {
|
|
|
401
409
|
}))));
|
|
402
410
|
};
|
|
403
411
|
|
|
404
|
-
var _path$
|
|
405
|
-
function _extends$
|
|
412
|
+
var _path$n, _g$j;
|
|
413
|
+
function _extends$n() { _extends$n = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$n.apply(this, arguments); }
|
|
406
414
|
var SvgCheckboxUncheck = function SvgCheckboxUncheck(props) {
|
|
407
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
415
|
+
return /*#__PURE__*/React.createElement("svg", _extends$n({
|
|
408
416
|
xmlns: "http://www.w3.org/2000/svg",
|
|
409
417
|
width: 24,
|
|
410
418
|
height: 24,
|
|
@@ -419,7 +427,7 @@ var SvgCheckboxUncheck = function SvgCheckboxUncheck(props) {
|
|
|
419
427
|
style: {
|
|
420
428
|
maskType: "alpha"
|
|
421
429
|
}
|
|
422
|
-
}, _path$
|
|
430
|
+
}, _path$n || (_path$n = /*#__PURE__*/React.createElement("path", {
|
|
423
431
|
fill: "#D9D9D9",
|
|
424
432
|
d: "M0 0h24v24H0z"
|
|
425
433
|
}))), _g$j || (_g$j = /*#__PURE__*/React.createElement("g", {
|
|
@@ -430,10 +438,10 @@ var SvgCheckboxUncheck = function SvgCheckboxUncheck(props) {
|
|
|
430
438
|
}))));
|
|
431
439
|
};
|
|
432
440
|
|
|
433
|
-
var _path$
|
|
434
|
-
function _extends$
|
|
441
|
+
var _path$m, _g$i;
|
|
442
|
+
function _extends$m() { _extends$m = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$m.apply(this, arguments); }
|
|
435
443
|
var SvgCheckCircle = function SvgCheckCircle(props) {
|
|
436
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
444
|
+
return /*#__PURE__*/React.createElement("svg", _extends$m({
|
|
437
445
|
xmlns: "http://www.w3.org/2000/svg",
|
|
438
446
|
fill: "none",
|
|
439
447
|
viewBox: "0 0 24 24"
|
|
@@ -447,7 +455,7 @@ var SvgCheckCircle = function SvgCheckCircle(props) {
|
|
|
447
455
|
style: {
|
|
448
456
|
maskType: "alpha"
|
|
449
457
|
}
|
|
450
|
-
}, _path$
|
|
458
|
+
}, _path$m || (_path$m = /*#__PURE__*/React.createElement("path", {
|
|
451
459
|
fill: "#D9D9D9",
|
|
452
460
|
d: "M0 0h24v24H0z"
|
|
453
461
|
}))), _g$i || (_g$i = /*#__PURE__*/React.createElement("g", {
|
|
@@ -458,10 +466,10 @@ var SvgCheckCircle = function SvgCheckCircle(props) {
|
|
|
458
466
|
}))));
|
|
459
467
|
};
|
|
460
468
|
|
|
461
|
-
var _path$
|
|
462
|
-
function _extends$
|
|
469
|
+
var _path$l, _g$h;
|
|
470
|
+
function _extends$l() { _extends$l = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$l.apply(this, arguments); }
|
|
463
471
|
var SvgClose = function SvgClose(props) {
|
|
464
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
472
|
+
return /*#__PURE__*/React.createElement("svg", _extends$l({
|
|
465
473
|
xmlns: "http://www.w3.org/2000/svg",
|
|
466
474
|
width: 24,
|
|
467
475
|
height: 24,
|
|
@@ -476,7 +484,7 @@ var SvgClose = function SvgClose(props) {
|
|
|
476
484
|
style: {
|
|
477
485
|
maskType: "alpha"
|
|
478
486
|
}
|
|
479
|
-
}, _path$
|
|
487
|
+
}, _path$l || (_path$l = /*#__PURE__*/React.createElement("path", {
|
|
480
488
|
fill: "#D9D9D9",
|
|
481
489
|
d: "M0 0h24v24H0z"
|
|
482
490
|
}))), _g$h || (_g$h = /*#__PURE__*/React.createElement("g", {
|
|
@@ -487,10 +495,10 @@ var SvgClose = function SvgClose(props) {
|
|
|
487
495
|
}))));
|
|
488
496
|
};
|
|
489
497
|
|
|
490
|
-
var _path$
|
|
491
|
-
function _extends$
|
|
498
|
+
var _path$k, _g$g;
|
|
499
|
+
function _extends$k() { _extends$k = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$k.apply(this, arguments); }
|
|
492
500
|
var SvgDelete = function SvgDelete(props) {
|
|
493
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
501
|
+
return /*#__PURE__*/React.createElement("svg", _extends$k({
|
|
494
502
|
xmlns: "http://www.w3.org/2000/svg",
|
|
495
503
|
fill: "none",
|
|
496
504
|
viewBox: "0 0 24 24"
|
|
@@ -504,7 +512,7 @@ var SvgDelete = function SvgDelete(props) {
|
|
|
504
512
|
style: {
|
|
505
513
|
maskType: "alpha"
|
|
506
514
|
}
|
|
507
|
-
}, _path$
|
|
515
|
+
}, _path$k || (_path$k = /*#__PURE__*/React.createElement("path", {
|
|
508
516
|
fill: "#D9D9D9",
|
|
509
517
|
d: "M0 0h24v24H0z"
|
|
510
518
|
}))), _g$g || (_g$g = /*#__PURE__*/React.createElement("g", {
|
|
@@ -515,10 +523,10 @@ var SvgDelete = function SvgDelete(props) {
|
|
|
515
523
|
}))));
|
|
516
524
|
};
|
|
517
525
|
|
|
518
|
-
var _path$
|
|
519
|
-
function _extends$
|
|
526
|
+
var _path$j, _g$f;
|
|
527
|
+
function _extends$j() { _extends$j = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$j.apply(this, arguments); }
|
|
520
528
|
var SvgInfo = function SvgInfo(props) {
|
|
521
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
529
|
+
return /*#__PURE__*/React.createElement("svg", _extends$j({
|
|
522
530
|
xmlns: "http://www.w3.org/2000/svg",
|
|
523
531
|
fill: "none",
|
|
524
532
|
viewBox: "0 0 24 24"
|
|
@@ -532,7 +540,7 @@ var SvgInfo = function SvgInfo(props) {
|
|
|
532
540
|
style: {
|
|
533
541
|
maskType: "alpha"
|
|
534
542
|
}
|
|
535
|
-
}, _path$
|
|
543
|
+
}, _path$j || (_path$j = /*#__PURE__*/React.createElement("path", {
|
|
536
544
|
fill: "#D9D9D9",
|
|
537
545
|
d: "M0 0h24v24H0z"
|
|
538
546
|
}))), _g$f || (_g$f = /*#__PURE__*/React.createElement("g", {
|
|
@@ -543,10 +551,10 @@ var SvgInfo = function SvgInfo(props) {
|
|
|
543
551
|
}))));
|
|
544
552
|
};
|
|
545
553
|
|
|
546
|
-
var _path$
|
|
547
|
-
function _extends$
|
|
554
|
+
var _path$i, _g$e;
|
|
555
|
+
function _extends$i() { _extends$i = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$i.apply(this, arguments); }
|
|
548
556
|
var SvgInfo1 = function SvgInfo1(props) {
|
|
549
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
557
|
+
return /*#__PURE__*/React.createElement("svg", _extends$i({
|
|
550
558
|
xmlns: "http://www.w3.org/2000/svg",
|
|
551
559
|
fill: "none",
|
|
552
560
|
viewBox: "0 0 24 24"
|
|
@@ -560,7 +568,7 @@ var SvgInfo1 = function SvgInfo1(props) {
|
|
|
560
568
|
style: {
|
|
561
569
|
maskType: "alpha"
|
|
562
570
|
}
|
|
563
|
-
}, _path$
|
|
571
|
+
}, _path$i || (_path$i = /*#__PURE__*/React.createElement("path", {
|
|
564
572
|
fill: "#D9D9D9",
|
|
565
573
|
d: "M0 0h24v24H0z"
|
|
566
574
|
}))), _g$e || (_g$e = /*#__PURE__*/React.createElement("g", {
|
|
@@ -571,10 +579,10 @@ var SvgInfo1 = function SvgInfo1(props) {
|
|
|
571
579
|
}))));
|
|
572
580
|
};
|
|
573
581
|
|
|
574
|
-
var _path$
|
|
575
|
-
function _extends$
|
|
582
|
+
var _path$h, _g$d;
|
|
583
|
+
function _extends$h() { _extends$h = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$h.apply(this, arguments); }
|
|
576
584
|
var SvgMicOff1 = function SvgMicOff1(props) {
|
|
577
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
585
|
+
return /*#__PURE__*/React.createElement("svg", _extends$h({
|
|
578
586
|
xmlns: "http://www.w3.org/2000/svg",
|
|
579
587
|
width: 24,
|
|
580
588
|
height: 24,
|
|
@@ -589,7 +597,7 @@ var SvgMicOff1 = function SvgMicOff1(props) {
|
|
|
589
597
|
style: {
|
|
590
598
|
maskType: "alpha"
|
|
591
599
|
}
|
|
592
|
-
}, _path$
|
|
600
|
+
}, _path$h || (_path$h = /*#__PURE__*/React.createElement("path", {
|
|
593
601
|
fill: "#D9D9D9",
|
|
594
602
|
d: "M0 0h24v24H0z"
|
|
595
603
|
}))), _g$d || (_g$d = /*#__PURE__*/React.createElement("g", {
|
|
@@ -600,10 +608,10 @@ var SvgMicOff1 = function SvgMicOff1(props) {
|
|
|
600
608
|
}))));
|
|
601
609
|
};
|
|
602
610
|
|
|
603
|
-
var _path$
|
|
604
|
-
function _extends$
|
|
611
|
+
var _path$g, _g$c;
|
|
612
|
+
function _extends$g() { _extends$g = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$g.apply(this, arguments); }
|
|
605
613
|
var SvgMicOff = function SvgMicOff(props) {
|
|
606
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
614
|
+
return /*#__PURE__*/React.createElement("svg", _extends$g({
|
|
607
615
|
xmlns: "http://www.w3.org/2000/svg",
|
|
608
616
|
width: 24,
|
|
609
617
|
height: 24,
|
|
@@ -618,7 +626,7 @@ var SvgMicOff = function SvgMicOff(props) {
|
|
|
618
626
|
style: {
|
|
619
627
|
maskType: "alpha"
|
|
620
628
|
}
|
|
621
|
-
}, _path$
|
|
629
|
+
}, _path$g || (_path$g = /*#__PURE__*/React.createElement("path", {
|
|
622
630
|
fill: "#D9D9D9",
|
|
623
631
|
d: "M0 0h24v24H0z"
|
|
624
632
|
}))), _g$c || (_g$c = /*#__PURE__*/React.createElement("g", {
|
|
@@ -629,10 +637,10 @@ var SvgMicOff = function SvgMicOff(props) {
|
|
|
629
637
|
}))));
|
|
630
638
|
};
|
|
631
639
|
|
|
632
|
-
var _path$
|
|
633
|
-
function _extends$
|
|
640
|
+
var _path$f, _g$b;
|
|
641
|
+
function _extends$f() { _extends$f = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$f.apply(this, arguments); }
|
|
634
642
|
var SvgMic = function SvgMic(props) {
|
|
635
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
643
|
+
return /*#__PURE__*/React.createElement("svg", _extends$f({
|
|
636
644
|
xmlns: "http://www.w3.org/2000/svg",
|
|
637
645
|
width: 24,
|
|
638
646
|
height: 24,
|
|
@@ -647,7 +655,7 @@ var SvgMic = function SvgMic(props) {
|
|
|
647
655
|
style: {
|
|
648
656
|
maskType: "alpha"
|
|
649
657
|
}
|
|
650
|
-
}, _path$
|
|
658
|
+
}, _path$f || (_path$f = /*#__PURE__*/React.createElement("path", {
|
|
651
659
|
fill: "#D9D9D9",
|
|
652
660
|
d: "M0 0h24v24H0z"
|
|
653
661
|
}))), _g$b || (_g$b = /*#__PURE__*/React.createElement("g", {
|
|
@@ -658,10 +666,10 @@ var SvgMic = function SvgMic(props) {
|
|
|
658
666
|
}))));
|
|
659
667
|
};
|
|
660
668
|
|
|
661
|
-
var _path$
|
|
662
|
-
function _extends$
|
|
669
|
+
var _path$e, _g$a;
|
|
670
|
+
function _extends$e() { _extends$e = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$e.apply(this, arguments); }
|
|
663
671
|
var SvgMic1 = function SvgMic1(props) {
|
|
664
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
672
|
+
return /*#__PURE__*/React.createElement("svg", _extends$e({
|
|
665
673
|
xmlns: "http://www.w3.org/2000/svg",
|
|
666
674
|
width: 24,
|
|
667
675
|
height: 24,
|
|
@@ -676,7 +684,7 @@ var SvgMic1 = function SvgMic1(props) {
|
|
|
676
684
|
style: {
|
|
677
685
|
maskType: "alpha"
|
|
678
686
|
}
|
|
679
|
-
}, _path$
|
|
687
|
+
}, _path$e || (_path$e = /*#__PURE__*/React.createElement("path", {
|
|
680
688
|
fill: "#D9D9D9",
|
|
681
689
|
d: "M0 0h24v24H0z"
|
|
682
690
|
}))), _g$a || (_g$a = /*#__PURE__*/React.createElement("g", {
|
|
@@ -687,23 +695,63 @@ var SvgMic1 = function SvgMic1(props) {
|
|
|
687
695
|
}))));
|
|
688
696
|
};
|
|
689
697
|
|
|
698
|
+
var _path$d;
|
|
699
|
+
function _extends$d() { _extends$d = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$d.apply(this, arguments); }
|
|
700
|
+
var SvgPasswordEye = function SvgPasswordEye(props) {
|
|
701
|
+
return /*#__PURE__*/React.createElement("svg", _extends$d({
|
|
702
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
703
|
+
fill: "none",
|
|
704
|
+
viewBox: "0 0 22 16"
|
|
705
|
+
}, props), _path$d || (_path$d = /*#__PURE__*/React.createElement("path", {
|
|
706
|
+
fill: "#838B97",
|
|
707
|
+
d: "M11 2.335a9.77 9.77 0 0 1 8.82 5.5 9.76 9.76 0 0 1-8.82 5.5 9.76 9.76 0 0 1-8.82-5.5 9.77 9.77 0 0 1 8.82-5.5zm0-2c-5 0-9.27 3.11-11 7.5 1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zm0 5a2.5 2.5 0 0 1 0 5 2.5 2.5 0 0 1 0-5zm0-2c-2.48 0-4.5 2.02-4.5 4.5s2.02 4.5 4.5 4.5 4.5-2.02 4.5-4.5-2.02-4.5-4.5-4.5z"
|
|
708
|
+
})));
|
|
709
|
+
};
|
|
710
|
+
|
|
690
711
|
var _path$c;
|
|
691
712
|
function _extends$c() { _extends$c = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$c.apply(this, arguments); }
|
|
692
|
-
var
|
|
713
|
+
var SvgPasswordEyeCrossed = function SvgPasswordEyeCrossed(props) {
|
|
693
714
|
return /*#__PURE__*/React.createElement("svg", _extends$c({
|
|
694
715
|
xmlns: "http://www.w3.org/2000/svg",
|
|
695
716
|
fill: "none",
|
|
696
|
-
viewBox: "0 0
|
|
717
|
+
viewBox: "0 0 24 20"
|
|
697
718
|
}, props), _path$c || (_path$c = /*#__PURE__*/React.createElement("path", {
|
|
719
|
+
fill: "#838B97",
|
|
720
|
+
d: "M23.775 17.898 1.35.367A.6.6 0 0 0 .507.46L.132.93a.6.6 0 0 0 .093.844l22.425 17.53a.6.6 0 0 0 .843-.093l.375-.468a.6.6 0 0 0-.093-.844zM11.13 5.728l5.054 3.952a4.189 4.189 0 0 0-5.055-3.952zm1.74 8.215L7.816 9.99a4.19 4.19 0 0 0 5.054 3.952zM12 4.435c3.7 0 7.09 2.063 8.922 5.4a10.71 10.71 0 0 1-1.65 2.258l1.416 1.106a12.518 12.518 0 0 0 1.983-2.817 1.214 1.214 0 0 0 0-1.094C20.636 5.32 16.61 2.635 12 2.635c-1.376 0-2.69.263-3.924.706l1.74 1.36A9.843 9.843 0 0 1 12 4.435zm0 10.8c-3.7 0-7.09-2.062-8.922-5.4.45-.821 1.004-1.58 1.651-2.257L3.314 6.472a12.51 12.51 0 0 0-1.983 2.816 1.213 1.213 0 0 0 0 1.095C3.364 14.35 7.39 17.035 12 17.035c1.376 0 2.689-.264 3.924-.705l-1.74-1.36a9.86 9.86 0 0 1-2.184.265z"
|
|
721
|
+
})));
|
|
722
|
+
};
|
|
723
|
+
|
|
724
|
+
var _path$b;
|
|
725
|
+
function _extends$b() { _extends$b = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$b.apply(this, arguments); }
|
|
726
|
+
var SvgPlay = function SvgPlay(props) {
|
|
727
|
+
return /*#__PURE__*/React.createElement("svg", _extends$b({
|
|
728
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
729
|
+
fill: "none",
|
|
730
|
+
viewBox: "0 0 16 16"
|
|
731
|
+
}, props), _path$b || (_path$b = /*#__PURE__*/React.createElement("path", {
|
|
698
732
|
fill: "#42454B",
|
|
699
733
|
d: "m15.262 6.708-11-6.503C3.37-.323 2 .19 2 1.495V14.5c0 1.172 1.272 1.878 2.263 1.29l11-6.5c.98-.578.984-2.002 0-2.58Z"
|
|
700
734
|
})));
|
|
701
735
|
};
|
|
702
736
|
|
|
703
|
-
var _path$
|
|
704
|
-
function _extends$
|
|
737
|
+
var _path$a;
|
|
738
|
+
function _extends$a() { _extends$a = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$a.apply(this, arguments); }
|
|
739
|
+
var SvgSmile = function SvgSmile(props) {
|
|
740
|
+
return /*#__PURE__*/React.createElement("svg", _extends$a({
|
|
741
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
742
|
+
width: 20,
|
|
743
|
+
height: 20,
|
|
744
|
+
fill: "none"
|
|
745
|
+
}, props), _path$a || (_path$a = /*#__PURE__*/React.createElement("path", {
|
|
746
|
+
fill: "#9FA6AD",
|
|
747
|
+
d: "M10 .313A9.686 9.686 0 0 0 .312 10 9.686 9.686 0 0 0 10 19.688 9.686 9.686 0 0 0 19.688 10 9.686 9.686 0 0 0 10 .312Zm0 17.5c-4.309 0-7.813-3.504-7.813-7.813 0-4.309 3.504-7.813 7.813-7.813 4.309 0 7.813 3.504 7.813 7.813 0 4.309-3.504 7.813-7.813 7.813ZM6.875 9.374c.691 0 1.25-.559 1.25-1.25s-.559-1.25-1.25-1.25-1.25.559-1.25 1.25.559 1.25 1.25 1.25Zm6.25 0c.691 0 1.25-.559 1.25-1.25s-.559-1.25-1.25-1.25-1.25.559-1.25 1.25.559 1.25 1.25 1.25Zm.156 2.836A4.263 4.263 0 0 1 10 13.75a4.25 4.25 0 0 1-3.281-1.54.94.94 0 0 0-1.32-.12.94.94 0 0 0-.122 1.32A6.132 6.132 0 0 0 10 15.621c1.828 0 3.55-.805 4.723-2.21a.937.937 0 1 0-1.442-1.2Z"
|
|
748
|
+
})));
|
|
749
|
+
};
|
|
750
|
+
|
|
751
|
+
var _path$9, _g$9;
|
|
752
|
+
function _extends$9() { _extends$9 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$9.apply(this, arguments); }
|
|
705
753
|
var SvgVideocamOff = function SvgVideocamOff(props) {
|
|
706
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
754
|
+
return /*#__PURE__*/React.createElement("svg", _extends$9({
|
|
707
755
|
xmlns: "http://www.w3.org/2000/svg",
|
|
708
756
|
width: 24,
|
|
709
757
|
height: 24,
|
|
@@ -718,7 +766,7 @@ var SvgVideocamOff = function SvgVideocamOff(props) {
|
|
|
718
766
|
style: {
|
|
719
767
|
maskType: "alpha"
|
|
720
768
|
}
|
|
721
|
-
}, _path$
|
|
769
|
+
}, _path$9 || (_path$9 = /*#__PURE__*/React.createElement("path", {
|
|
722
770
|
fill: "#D9D9D9",
|
|
723
771
|
d: "M0 0h24v24H0z"
|
|
724
772
|
}))), _g$9 || (_g$9 = /*#__PURE__*/React.createElement("g", {
|
|
@@ -729,10 +777,10 @@ var SvgVideocamOff = function SvgVideocamOff(props) {
|
|
|
729
777
|
}))));
|
|
730
778
|
};
|
|
731
779
|
|
|
732
|
-
var _path$
|
|
733
|
-
function _extends$
|
|
780
|
+
var _path$8, _g$8;
|
|
781
|
+
function _extends$8() { _extends$8 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$8.apply(this, arguments); }
|
|
734
782
|
var SvgVideocamOff1 = function SvgVideocamOff1(props) {
|
|
735
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
783
|
+
return /*#__PURE__*/React.createElement("svg", _extends$8({
|
|
736
784
|
xmlns: "http://www.w3.org/2000/svg",
|
|
737
785
|
width: 24,
|
|
738
786
|
height: 24,
|
|
@@ -747,7 +795,7 @@ var SvgVideocamOff1 = function SvgVideocamOff1(props) {
|
|
|
747
795
|
style: {
|
|
748
796
|
maskType: "alpha"
|
|
749
797
|
}
|
|
750
|
-
}, _path$
|
|
798
|
+
}, _path$8 || (_path$8 = /*#__PURE__*/React.createElement("path", {
|
|
751
799
|
fill: "#D9D9D9",
|
|
752
800
|
d: "M0 0h24v24H0z"
|
|
753
801
|
}))), _g$8 || (_g$8 = /*#__PURE__*/React.createElement("g", {
|
|
@@ -758,10 +806,10 @@ var SvgVideocamOff1 = function SvgVideocamOff1(props) {
|
|
|
758
806
|
}))));
|
|
759
807
|
};
|
|
760
808
|
|
|
761
|
-
var _path$
|
|
762
|
-
function _extends$
|
|
809
|
+
var _path$7, _g$7;
|
|
810
|
+
function _extends$7() { _extends$7 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$7.apply(this, arguments); }
|
|
763
811
|
var SvgVideocam = function SvgVideocam(props) {
|
|
764
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
812
|
+
return /*#__PURE__*/React.createElement("svg", _extends$7({
|
|
765
813
|
xmlns: "http://www.w3.org/2000/svg",
|
|
766
814
|
width: 24,
|
|
767
815
|
height: 24,
|
|
@@ -776,7 +824,7 @@ var SvgVideocam = function SvgVideocam(props) {
|
|
|
776
824
|
style: {
|
|
777
825
|
maskType: "alpha"
|
|
778
826
|
}
|
|
779
|
-
}, _path$
|
|
827
|
+
}, _path$7 || (_path$7 = /*#__PURE__*/React.createElement("path", {
|
|
780
828
|
fill: "#D9D9D9",
|
|
781
829
|
d: "M0 0h24v24H0z"
|
|
782
830
|
}))), _g$7 || (_g$7 = /*#__PURE__*/React.createElement("g", {
|
|
@@ -787,10 +835,10 @@ var SvgVideocam = function SvgVideocam(props) {
|
|
|
787
835
|
}))));
|
|
788
836
|
};
|
|
789
837
|
|
|
790
|
-
var _path$
|
|
791
|
-
function _extends$
|
|
838
|
+
var _path$6, _g$6;
|
|
839
|
+
function _extends$6() { _extends$6 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$6.apply(this, arguments); }
|
|
792
840
|
var SvgVideocam1 = function SvgVideocam1(props) {
|
|
793
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
841
|
+
return /*#__PURE__*/React.createElement("svg", _extends$6({
|
|
794
842
|
xmlns: "http://www.w3.org/2000/svg",
|
|
795
843
|
width: 24,
|
|
796
844
|
height: 24,
|
|
@@ -805,7 +853,7 @@ var SvgVideocam1 = function SvgVideocam1(props) {
|
|
|
805
853
|
style: {
|
|
806
854
|
maskType: "alpha"
|
|
807
855
|
}
|
|
808
|
-
}, _path$
|
|
856
|
+
}, _path$6 || (_path$6 = /*#__PURE__*/React.createElement("path", {
|
|
809
857
|
fill: "#D9D9D9",
|
|
810
858
|
d: "M0 0h24v24H0z"
|
|
811
859
|
}))), _g$6 || (_g$6 = /*#__PURE__*/React.createElement("g", {
|
|
@@ -816,10 +864,10 @@ var SvgVideocam1 = function SvgVideocam1(props) {
|
|
|
816
864
|
}))));
|
|
817
865
|
};
|
|
818
866
|
|
|
819
|
-
var _path$
|
|
820
|
-
function _extends$
|
|
867
|
+
var _path$5, _g$5;
|
|
868
|
+
function _extends$5() { _extends$5 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$5.apply(this, arguments); }
|
|
821
869
|
var SvgVolumeOff1 = function SvgVolumeOff1(props) {
|
|
822
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
870
|
+
return /*#__PURE__*/React.createElement("svg", _extends$5({
|
|
823
871
|
xmlns: "http://www.w3.org/2000/svg",
|
|
824
872
|
width: 24,
|
|
825
873
|
height: 24,
|
|
@@ -834,7 +882,7 @@ var SvgVolumeOff1 = function SvgVolumeOff1(props) {
|
|
|
834
882
|
style: {
|
|
835
883
|
maskType: "alpha"
|
|
836
884
|
}
|
|
837
|
-
}, _path$
|
|
885
|
+
}, _path$5 || (_path$5 = /*#__PURE__*/React.createElement("path", {
|
|
838
886
|
fill: "#D9D9D9",
|
|
839
887
|
d: "M0 0h24v24H0z"
|
|
840
888
|
}))), _g$5 || (_g$5 = /*#__PURE__*/React.createElement("g", {
|
|
@@ -845,10 +893,10 @@ var SvgVolumeOff1 = function SvgVolumeOff1(props) {
|
|
|
845
893
|
}))));
|
|
846
894
|
};
|
|
847
895
|
|
|
848
|
-
var _path$
|
|
849
|
-
function _extends$
|
|
896
|
+
var _path$4, _g$4;
|
|
897
|
+
function _extends$4() { _extends$4 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$4.apply(this, arguments); }
|
|
850
898
|
var SvgVolumeOff = function SvgVolumeOff(props) {
|
|
851
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
899
|
+
return /*#__PURE__*/React.createElement("svg", _extends$4({
|
|
852
900
|
xmlns: "http://www.w3.org/2000/svg",
|
|
853
901
|
width: 24,
|
|
854
902
|
height: 24,
|
|
@@ -863,7 +911,7 @@ var SvgVolumeOff = function SvgVolumeOff(props) {
|
|
|
863
911
|
style: {
|
|
864
912
|
maskType: "alpha"
|
|
865
913
|
}
|
|
866
|
-
}, _path$
|
|
914
|
+
}, _path$4 || (_path$4 = /*#__PURE__*/React.createElement("path", {
|
|
867
915
|
fill: "#D9D9D9",
|
|
868
916
|
d: "M0 0h24v24H0z"
|
|
869
917
|
}))), _g$4 || (_g$4 = /*#__PURE__*/React.createElement("g", {
|
|
@@ -874,10 +922,10 @@ var SvgVolumeOff = function SvgVolumeOff(props) {
|
|
|
874
922
|
}))));
|
|
875
923
|
};
|
|
876
924
|
|
|
877
|
-
var _path$
|
|
878
|
-
function _extends$
|
|
925
|
+
var _path$3, _g$3;
|
|
926
|
+
function _extends$3() { _extends$3 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$3.apply(this, arguments); }
|
|
879
927
|
var SvgVolumeUp1 = function SvgVolumeUp1(props) {
|
|
880
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
928
|
+
return /*#__PURE__*/React.createElement("svg", _extends$3({
|
|
881
929
|
xmlns: "http://www.w3.org/2000/svg",
|
|
882
930
|
width: 24,
|
|
883
931
|
height: 24,
|
|
@@ -892,7 +940,7 @@ var SvgVolumeUp1 = function SvgVolumeUp1(props) {
|
|
|
892
940
|
style: {
|
|
893
941
|
maskType: "alpha"
|
|
894
942
|
}
|
|
895
|
-
}, _path$
|
|
943
|
+
}, _path$3 || (_path$3 = /*#__PURE__*/React.createElement("path", {
|
|
896
944
|
fill: "#D9D9D9",
|
|
897
945
|
d: "M0 0h24v24H0z"
|
|
898
946
|
}))), _g$3 || (_g$3 = /*#__PURE__*/React.createElement("g", {
|
|
@@ -903,10 +951,10 @@ var SvgVolumeUp1 = function SvgVolumeUp1(props) {
|
|
|
903
951
|
}))));
|
|
904
952
|
};
|
|
905
953
|
|
|
906
|
-
var _path$
|
|
907
|
-
function _extends$
|
|
954
|
+
var _path$2, _g$2;
|
|
955
|
+
function _extends$2() { _extends$2 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$2.apply(this, arguments); }
|
|
908
956
|
var SvgVolumeUp = function SvgVolumeUp(props) {
|
|
909
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
957
|
+
return /*#__PURE__*/React.createElement("svg", _extends$2({
|
|
910
958
|
xmlns: "http://www.w3.org/2000/svg",
|
|
911
959
|
width: 24,
|
|
912
960
|
height: 24,
|
|
@@ -921,7 +969,7 @@ var SvgVolumeUp = function SvgVolumeUp(props) {
|
|
|
921
969
|
style: {
|
|
922
970
|
maskType: "alpha"
|
|
923
971
|
}
|
|
924
|
-
}, _path$
|
|
972
|
+
}, _path$2 || (_path$2 = /*#__PURE__*/React.createElement("path", {
|
|
925
973
|
fill: "#D9D9D9",
|
|
926
974
|
d: "M0 0h24v24H0z"
|
|
927
975
|
}))), _g$2 || (_g$2 = /*#__PURE__*/React.createElement("g", {
|
|
@@ -932,10 +980,10 @@ var SvgVolumeUp = function SvgVolumeUp(props) {
|
|
|
932
980
|
}))));
|
|
933
981
|
};
|
|
934
982
|
|
|
935
|
-
var _path$
|
|
936
|
-
function _extends$
|
|
983
|
+
var _path$1, _g$1;
|
|
984
|
+
function _extends$1() { _extends$1 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1.apply(this, arguments); }
|
|
937
985
|
var SvgWarning1 = function SvgWarning1(props) {
|
|
938
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
986
|
+
return /*#__PURE__*/React.createElement("svg", _extends$1({
|
|
939
987
|
xmlns: "http://www.w3.org/2000/svg",
|
|
940
988
|
width: 24,
|
|
941
989
|
height: 24,
|
|
@@ -950,7 +998,7 @@ var SvgWarning1 = function SvgWarning1(props) {
|
|
|
950
998
|
style: {
|
|
951
999
|
maskType: "alpha"
|
|
952
1000
|
}
|
|
953
|
-
}, _path$
|
|
1001
|
+
}, _path$1 || (_path$1 = /*#__PURE__*/React.createElement("path", {
|
|
954
1002
|
fill: "#D9D9D9",
|
|
955
1003
|
d: "M0 0h24v24H0z"
|
|
956
1004
|
}))), _g$1 || (_g$1 = /*#__PURE__*/React.createElement("g", {
|
|
@@ -961,10 +1009,10 @@ var SvgWarning1 = function SvgWarning1(props) {
|
|
|
961
1009
|
}))));
|
|
962
1010
|
};
|
|
963
1011
|
|
|
964
|
-
var _path
|
|
965
|
-
function _extends
|
|
1012
|
+
var _path, _g;
|
|
1013
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
966
1014
|
var SvgWarning = function SvgWarning(props) {
|
|
967
|
-
return /*#__PURE__*/React.createElement("svg", _extends
|
|
1015
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
968
1016
|
xmlns: "http://www.w3.org/2000/svg",
|
|
969
1017
|
fill: "none",
|
|
970
1018
|
viewBox: "0 0 24 24"
|
|
@@ -978,7 +1026,7 @@ var SvgWarning = function SvgWarning(props) {
|
|
|
978
1026
|
style: {
|
|
979
1027
|
maskType: "alpha"
|
|
980
1028
|
}
|
|
981
|
-
}, _path
|
|
1029
|
+
}, _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
982
1030
|
fill: "#D9D9D9",
|
|
983
1031
|
d: "M0 0h24v24H0z"
|
|
984
1032
|
}))), _g || (_g = /*#__PURE__*/React.createElement("g", {
|
|
@@ -989,32 +1037,6 @@ var SvgWarning = function SvgWarning(props) {
|
|
|
989
1037
|
}))));
|
|
990
1038
|
};
|
|
991
1039
|
|
|
992
|
-
var _path$1;
|
|
993
|
-
function _extends$1() { _extends$1 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1.apply(this, arguments); }
|
|
994
|
-
var SvgPasswordEye = function SvgPasswordEye(props) {
|
|
995
|
-
return /*#__PURE__*/React.createElement("svg", _extends$1({
|
|
996
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
997
|
-
fill: "none",
|
|
998
|
-
viewBox: "0 0 22 16"
|
|
999
|
-
}, props), _path$1 || (_path$1 = /*#__PURE__*/React.createElement("path", {
|
|
1000
|
-
fill: "#838B97",
|
|
1001
|
-
d: "M11 2.335a9.77 9.77 0 0 1 8.82 5.5 9.76 9.76 0 0 1-8.82 5.5 9.76 9.76 0 0 1-8.82-5.5 9.77 9.77 0 0 1 8.82-5.5zm0-2c-5 0-9.27 3.11-11 7.5 1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zm0 5a2.5 2.5 0 0 1 0 5 2.5 2.5 0 0 1 0-5zm0-2c-2.48 0-4.5 2.02-4.5 4.5s2.02 4.5 4.5 4.5 4.5-2.02 4.5-4.5-2.02-4.5-4.5-4.5z"
|
|
1002
|
-
})));
|
|
1003
|
-
};
|
|
1004
|
-
|
|
1005
|
-
var _path;
|
|
1006
|
-
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
1007
|
-
var SvgPasswordEyeCrossed = function SvgPasswordEyeCrossed(props) {
|
|
1008
|
-
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
1009
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
1010
|
-
fill: "none",
|
|
1011
|
-
viewBox: "0 0 24 20"
|
|
1012
|
-
}, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
1013
|
-
fill: "#838B97",
|
|
1014
|
-
d: "M23.775 17.898 1.35.367A.6.6 0 0 0 .507.46L.132.93a.6.6 0 0 0 .093.844l22.425 17.53a.6.6 0 0 0 .843-.093l.375-.468a.6.6 0 0 0-.093-.844zM11.13 5.728l5.054 3.952a4.189 4.189 0 0 0-5.055-3.952zm1.74 8.215L7.816 9.99a4.19 4.19 0 0 0 5.054 3.952zM12 4.435c3.7 0 7.09 2.063 8.922 5.4a10.71 10.71 0 0 1-1.65 2.258l1.416 1.106a12.518 12.518 0 0 0 1.983-2.817 1.214 1.214 0 0 0 0-1.094C20.636 5.32 16.61 2.635 12 2.635c-1.376 0-2.69.263-3.924.706l1.74 1.36A9.843 9.843 0 0 1 12 4.435zm0 10.8c-3.7 0-7.09-2.062-8.922-5.4.45-.821 1.004-1.58 1.651-2.257L3.314 6.472a12.51 12.51 0 0 0-1.983 2.816 1.213 1.213 0 0 0 0 1.095C3.364 14.35 7.39 17.035 12 17.035c1.376 0 2.689-.264 3.924-.705l-1.74-1.36a9.86 9.86 0 0 1-2.184.265z"
|
|
1015
|
-
})));
|
|
1016
|
-
};
|
|
1017
|
-
|
|
1018
1040
|
declare namespace index {
|
|
1019
1041
|
export {
|
|
1020
1042
|
SvgAdd as AddIcon,
|
|
@@ -1036,6 +1058,7 @@ declare namespace index {
|
|
|
1036
1058
|
SvgPasswordEyeCrossed as PasswordEyeCrossedIcon,
|
|
1037
1059
|
SvgPasswordEye as PasswordEyeIcon,
|
|
1038
1060
|
SvgPlay as PlayIcon,
|
|
1061
|
+
SvgSmile as SmileIcon,
|
|
1039
1062
|
SvgVideocamOff as VideoCamOffIcon,
|
|
1040
1063
|
SvgVideocamOff1 as VideoCamOffSolidIcon,
|
|
1041
1064
|
SvgVideocam as VideoCamOnIcon,
|
|
@@ -1049,4 +1072,4 @@ declare namespace index {
|
|
|
1049
1072
|
};
|
|
1050
1073
|
}
|
|
1051
1074
|
|
|
1052
|
-
export { Alert, Button, Checkbox, FormGroup, Input, InputHint, Label, Modal, Progress, RadioGroup, Select, SelectItem, SelectItemText, Switch, Tab, TabsContent, TabsList, TabsRoot, Tooltip, index as icons };
|
|
1075
|
+
export { Alert, Button, Checkbox, FormGroup, Input, InputHint, Label, Modal, Popover, Progress, RadioGroup, Select, SelectItem, SelectItemText, Switch, Tab, TabsContent, TabsList, TabsRoot, Tooltip, index as icons };
|