demio-ui 1.0.8 → 1.0.13
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/.DS_Store +0 -0
- package/dist/cjs/index.css +1 -1
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/types/src/components/Alert/Alert.d.ts +13 -0
- package/dist/cjs/types/src/components/Alert/index.d.ts +1 -0
- package/dist/cjs/types/src/components/Button/Button.d.ts +2 -2
- package/dist/cjs/types/src/components/FormGroup/FormGroup.d.ts +9 -0
- package/dist/cjs/types/src/components/FormGroup/index.d.ts +1 -0
- package/dist/cjs/types/src/components/Progress/Progress.d.ts +11 -0
- package/dist/cjs/types/src/components/Progress/index.d.ts +1 -0
- package/dist/cjs/types/src/components/Select/Select.d.ts +4 -0
- package/dist/cjs/types/src/components/Select/index.d.ts +1 -1
- package/dist/cjs/types/src/components/Tooltip/Tooltip.d.ts +1 -1
- package/dist/cjs/types/src/components/index.d.ts +4 -1
- package/dist/cjs/types/src/icons/index.d.ts +25 -0
- package/dist/cjs/types/src/index.d.ts +1 -0
- package/dist/esm/index.css +1 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/types/src/components/Alert/Alert.d.ts +13 -0
- package/dist/esm/types/src/components/Alert/index.d.ts +1 -0
- package/dist/esm/types/src/components/Button/Button.d.ts +2 -2
- package/dist/esm/types/src/components/FormGroup/FormGroup.d.ts +9 -0
- package/dist/esm/types/src/components/FormGroup/index.d.ts +1 -0
- package/dist/esm/types/src/components/Progress/Progress.d.ts +11 -0
- package/dist/esm/types/src/components/Progress/index.d.ts +1 -0
- package/dist/esm/types/src/components/Select/Select.d.ts +4 -0
- package/dist/esm/types/src/components/Select/index.d.ts +1 -1
- package/dist/esm/types/src/components/Tooltip/Tooltip.d.ts +1 -1
- package/dist/esm/types/src/components/index.d.ts +4 -1
- package/dist/esm/types/src/icons/index.d.ts +25 -0
- package/dist/esm/types/src/index.d.ts +1 -0
- package/dist/types.d.ts +786 -31
- package/package.json +3 -1
- package/dist/cjs/index.js.map +0 -1
- package/dist/esm/index.js.map +0 -1
package/dist/types.d.ts
CHANGED
|
@@ -1,24 +1,26 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import React__default, { MouseEventHandler } from 'react';
|
|
3
|
+
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
2
4
|
|
|
3
|
-
type Props$
|
|
5
|
+
type Props$7 = {
|
|
4
6
|
disabled?: boolean;
|
|
5
7
|
children?: string;
|
|
6
8
|
size?: 'small' | 'medium' | 'large';
|
|
7
|
-
variant?: 'primary' | 'secondary';
|
|
9
|
+
variant?: 'primary' | 'secondary' | 'outline' | 'danger';
|
|
8
10
|
onClick: MouseEventHandler<HTMLButtonElement>;
|
|
9
11
|
type?: 'button' | 'submit' | 'reset';
|
|
10
12
|
className?: string;
|
|
11
|
-
prefix?: string |
|
|
12
|
-
suffix?: string |
|
|
13
|
+
prefix?: string | React__default.ReactNode;
|
|
14
|
+
suffix?: string | React__default.ReactNode;
|
|
13
15
|
fullWidth?: boolean;
|
|
14
16
|
};
|
|
15
17
|
/**
|
|
16
18
|
* Button component documentation.
|
|
17
19
|
**/
|
|
18
|
-
declare
|
|
20
|
+
declare const Button: React__default.ForwardRefExoticComponent<Props$7 & React__default.RefAttributes<HTMLButtonElement>>;
|
|
19
21
|
|
|
20
|
-
type Props$
|
|
21
|
-
children: string |
|
|
22
|
+
type Props$6 = {
|
|
23
|
+
children: string | React__default.ReactNode;
|
|
22
24
|
open: boolean;
|
|
23
25
|
onOpenChange: (open: boolean) => void;
|
|
24
26
|
title?: string;
|
|
@@ -29,39 +31,39 @@ type Props$3 = {
|
|
|
29
31
|
- Esc closes the component automatically.
|
|
30
32
|
- [Accessibility and Keyboard Interactions](https://www.radix-ui.com/docs/primitives/components/dialog#accessibility)
|
|
31
33
|
**/
|
|
32
|
-
declare function Modal({ children, open, onOpenChange, title }: Props$
|
|
34
|
+
declare function Modal({ children, open, onOpenChange, title }: Props$6): React__default.JSX.Element;
|
|
33
35
|
|
|
34
36
|
type TabsRootProps = {
|
|
35
37
|
value: string;
|
|
36
38
|
onValueChange: (value: string) => void;
|
|
37
39
|
defaultValue?: string;
|
|
38
40
|
className?: string;
|
|
39
|
-
children:
|
|
41
|
+
children: React__default.ReactNode;
|
|
40
42
|
};
|
|
41
43
|
/**
|
|
42
44
|
- [Full keyboard navigation](https://www.radix-ui.com/docs/primitives/components/tabs#accessibility).
|
|
43
45
|
**/
|
|
44
|
-
declare function TabsRoot({ children, className, ...props }: TabsRootProps):
|
|
46
|
+
declare function TabsRoot({ children, className, ...props }: TabsRootProps): React__default.JSX.Element;
|
|
45
47
|
type TabsListProps = {
|
|
46
48
|
className?: string;
|
|
47
|
-
children:
|
|
49
|
+
children: React__default.ReactNode;
|
|
48
50
|
};
|
|
49
|
-
declare function TabsList({ children, className }: TabsListProps):
|
|
51
|
+
declare function TabsList({ children, className }: TabsListProps): React__default.JSX.Element;
|
|
50
52
|
type TabProps = {
|
|
51
53
|
value: string;
|
|
52
54
|
className?: string;
|
|
53
|
-
children:
|
|
55
|
+
children: React__default.ReactNode;
|
|
54
56
|
disabled?: boolean;
|
|
55
57
|
};
|
|
56
|
-
declare function Tab({ children, className, ...props }: TabProps):
|
|
58
|
+
declare function Tab({ children, className, ...props }: TabProps): React__default.JSX.Element;
|
|
57
59
|
type TabsContentProps = {
|
|
58
60
|
value: string;
|
|
59
61
|
className?: string;
|
|
60
|
-
children:
|
|
62
|
+
children: React__default.ReactNode;
|
|
61
63
|
};
|
|
62
|
-
declare function TabsContent({ children, value, className }: TabsContentProps):
|
|
64
|
+
declare function TabsContent({ children, value, className }: TabsContentProps): React__default.JSX.Element;
|
|
63
65
|
|
|
64
|
-
type Props$
|
|
66
|
+
type Props$5 = {
|
|
65
67
|
checked?: boolean;
|
|
66
68
|
onCheckedChange?: (checked: boolean) => void;
|
|
67
69
|
className?: string;
|
|
@@ -74,11 +76,11 @@ type Props$2 = {
|
|
|
74
76
|
/**
|
|
75
77
|
* Accessibility [Keyboard Interactions](https://www.radix-ui.com/docs/primitives/components/switch#keyboard-interactions)
|
|
76
78
|
**/
|
|
77
|
-
declare function Switch({ className, id, disabled, required, name, ...props }: Props$
|
|
79
|
+
declare function Switch({ className, id, disabled, required, name, ...props }: Props$5): React__default.JSX.Element;
|
|
78
80
|
|
|
79
|
-
type Props$
|
|
80
|
-
children:
|
|
81
|
-
content:
|
|
81
|
+
type Props$4 = {
|
|
82
|
+
children: React__default.ReactNode;
|
|
83
|
+
content: React__default.ReactNode | string;
|
|
82
84
|
open?: boolean;
|
|
83
85
|
defaultOpen?: boolean;
|
|
84
86
|
onOpenChange?: (open: boolean) => void;
|
|
@@ -93,29 +95,782 @@ type Props$1 = {
|
|
|
93
95
|
/**
|
|
94
96
|
* Accessibility [Keyboard Interactions](https://www.radix-ui.com/docs/primitives/components/tooltip#keyboard-interactions)
|
|
95
97
|
**/
|
|
96
|
-
declare function Tooltip({ children, content, open, defaultOpen, onOpenChange, side, align, className, delayDuration, sideOffset, ...props }: Props$
|
|
98
|
+
declare function Tooltip({ children, content, open, defaultOpen, onOpenChange, side, align, className, delayDuration, sideOffset, ...props }: Props$4): string | number | boolean | Iterable<React__default.ReactNode> | React__default.JSX.Element | null | undefined;
|
|
97
99
|
|
|
98
100
|
type SelectProps = {
|
|
99
|
-
children:
|
|
101
|
+
children: React__default.ReactNode;
|
|
100
102
|
sideOffset?: number;
|
|
101
103
|
position?: 'item-aligned' | 'popper';
|
|
102
104
|
value?: string;
|
|
103
105
|
disabled?: boolean;
|
|
104
106
|
onValueChange?: (value: string) => void;
|
|
105
107
|
id: string;
|
|
108
|
+
icon?: React__default.ReactNode | string;
|
|
109
|
+
placeholder?: string;
|
|
106
110
|
};
|
|
107
|
-
declare const Select:
|
|
111
|
+
declare const Select: React__default.ForwardRefExoticComponent<SelectProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
108
112
|
type SelectItemProps = {
|
|
109
|
-
children:
|
|
113
|
+
children: React__default.ReactNode;
|
|
110
114
|
value: string;
|
|
111
115
|
disabled?: boolean;
|
|
112
116
|
};
|
|
113
|
-
declare const SelectItem:
|
|
117
|
+
declare const SelectItem: React__default.ForwardRefExoticComponent<SelectItemProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
118
|
+
declare const SelectItemText: React__default.ForwardRefExoticComponent<SelectPrimitive.SelectItemTextProps & React__default.RefAttributes<HTMLSpanElement>>;
|
|
114
119
|
|
|
115
|
-
type Props = {
|
|
120
|
+
type Props$3 = {
|
|
116
121
|
htmlFor: string;
|
|
117
|
-
children:
|
|
122
|
+
children: React__default.ReactNode;
|
|
123
|
+
};
|
|
124
|
+
declare function Label({ htmlFor, children }: Props$3): React__default.JSX.Element;
|
|
125
|
+
|
|
126
|
+
type Props$2 = {
|
|
127
|
+
children: React__default.ReactNode;
|
|
128
|
+
position?: 'horizontal' | 'vertical';
|
|
129
|
+
justify?: 'between' | 'start';
|
|
130
|
+
alignItems?: 'start' | 'stretch';
|
|
131
|
+
};
|
|
132
|
+
declare function FormGroup({ children, position, justify, alignItems, }: Props$2): React__default.JSX.Element;
|
|
133
|
+
|
|
134
|
+
type Props$1 = {
|
|
135
|
+
progress: number;
|
|
136
|
+
max?: number;
|
|
137
|
+
};
|
|
138
|
+
/**
|
|
139
|
+
* Progress component
|
|
140
|
+
* - Provides context for assistive technology to read the progress of a task.
|
|
141
|
+
**/
|
|
142
|
+
declare function Progress({ max, progress, ...props }: Props$1): React__default.JSX.Element;
|
|
143
|
+
|
|
144
|
+
type Props = {
|
|
145
|
+
onOpenChange: (open: boolean) => void;
|
|
146
|
+
open: boolean;
|
|
147
|
+
actionText?: string;
|
|
148
|
+
onActionClick: MouseEventHandler<HTMLButtonElement>;
|
|
149
|
+
cancelText?: string;
|
|
150
|
+
onCancelClick: MouseEventHandler<HTMLButtonElement>;
|
|
151
|
+
title?: string;
|
|
152
|
+
description?: string;
|
|
153
|
+
};
|
|
154
|
+
declare function Alert({ onOpenChange, open, actionText, onActionClick, cancelText, onCancelClick, title, description, }: Props): React__default.JSX.Element;
|
|
155
|
+
|
|
156
|
+
var _path$n, _g$n;
|
|
157
|
+
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); }
|
|
158
|
+
var SvgAdd = function SvgAdd(props) {
|
|
159
|
+
return /*#__PURE__*/React.createElement("svg", _extends$n({
|
|
160
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
161
|
+
width: 24,
|
|
162
|
+
height: 24,
|
|
163
|
+
fill: "none"
|
|
164
|
+
}, props), /*#__PURE__*/React.createElement("mask", {
|
|
165
|
+
id: "add_svg__a",
|
|
166
|
+
width: 24,
|
|
167
|
+
height: 24,
|
|
168
|
+
x: 0,
|
|
169
|
+
y: 0,
|
|
170
|
+
maskUnits: "userSpaceOnUse",
|
|
171
|
+
style: {
|
|
172
|
+
maskType: "alpha"
|
|
173
|
+
}
|
|
174
|
+
}, _path$n || (_path$n = /*#__PURE__*/React.createElement("path", {
|
|
175
|
+
fill: "#D9D9D9",
|
|
176
|
+
d: "M0 0h24v24H0z"
|
|
177
|
+
}))), _g$n || (_g$n = /*#__PURE__*/React.createElement("g", {
|
|
178
|
+
mask: "url(#add_svg__a)"
|
|
179
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
180
|
+
fill: "#2C3336",
|
|
181
|
+
d: "M12 18.75a.725.725 0 0 1-.535-.216.726.726 0 0 1-.215-.534v-5.25H6a.726.726 0 0 1-.534-.216A.726.726 0 0 1 5.25 12c0-.213.072-.391.216-.535A.726.726 0 0 1 6 11.25h5.25V6c0-.213.072-.39.216-.534A.726.726 0 0 1 12 5.25c.213 0 .391.072.535.216A.726.726 0 0 1 12.75 6v5.25H18c.212 0 .39.072.534.216a.726.726 0 0 1 .216.534c0 .213-.072.391-.216.535a.726.726 0 0 1-.534.215h-5.25V18c0 .212-.072.39-.216.534a.726.726 0 0 1-.534.216Z"
|
|
182
|
+
}))));
|
|
183
|
+
};
|
|
184
|
+
|
|
185
|
+
var _path$m, _g$m;
|
|
186
|
+
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); }
|
|
187
|
+
var SvgBlock = function SvgBlock(props) {
|
|
188
|
+
return /*#__PURE__*/React.createElement("svg", _extends$m({
|
|
189
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
190
|
+
width: 24,
|
|
191
|
+
height: 24,
|
|
192
|
+
fill: "none"
|
|
193
|
+
}, props), /*#__PURE__*/React.createElement("mask", {
|
|
194
|
+
id: "block_svg__a",
|
|
195
|
+
width: 24,
|
|
196
|
+
height: 24,
|
|
197
|
+
x: 0,
|
|
198
|
+
y: 0,
|
|
199
|
+
maskUnits: "userSpaceOnUse",
|
|
200
|
+
style: {
|
|
201
|
+
maskType: "alpha"
|
|
202
|
+
}
|
|
203
|
+
}, _path$m || (_path$m = /*#__PURE__*/React.createElement("path", {
|
|
204
|
+
fill: "#D9D9D9",
|
|
205
|
+
d: "M0 0h24v24H0z"
|
|
206
|
+
}))), _g$m || (_g$m = /*#__PURE__*/React.createElement("g", {
|
|
207
|
+
mask: "url(#block_svg__a)"
|
|
208
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
209
|
+
fill: "#42454B",
|
|
210
|
+
d: "M12.002 21.5a9.255 9.255 0 0 1-3.705-.748 9.598 9.598 0 0 1-3.018-2.03 9.591 9.591 0 0 1-2.03-3.016 9.245 9.245 0 0 1-.749-3.704c0-1.314.25-2.55.748-3.705a9.597 9.597 0 0 1 2.03-3.018 9.592 9.592 0 0 1 3.016-2.03 9.245 9.245 0 0 1 3.704-.749c1.314 0 2.55.25 3.705.748a9.597 9.597 0 0 1 3.018 2.03 9.592 9.592 0 0 1 2.03 3.016 9.245 9.245 0 0 1 .749 3.704c0 1.314-.25 2.55-.748 3.705a9.598 9.598 0 0 1-2.03 3.018 9.592 9.592 0 0 1-3.016 2.03 9.245 9.245 0 0 1-3.704.749ZM12 20c2.233 0 4.125-.775 5.675-2.325C19.225 16.125 20 14.233 20 12c0-.938-.16-1.842-.48-2.71a8.124 8.124 0 0 0-1.374-2.382L6.908 18.146a7.93 7.93 0 0 0 2.382 1.378A7.839 7.839 0 0 0 12 20Zm-6.146-2.908L17.092 5.854a7.62 7.62 0 0 0-2.375-1.383A7.947 7.947 0 0 0 12 4c-2.233 0-4.125.775-5.675 2.325C4.775 7.875 4 9.767 4 12c0 .938.159 1.842.476 2.71a7.93 7.93 0 0 0 1.378 2.382Z"
|
|
211
|
+
}))));
|
|
212
|
+
};
|
|
213
|
+
|
|
214
|
+
var _path$l, _g$l;
|
|
215
|
+
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); }
|
|
216
|
+
var SvgBlurOn = function SvgBlurOn(props) {
|
|
217
|
+
return /*#__PURE__*/React.createElement("svg", _extends$l({
|
|
218
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
219
|
+
width: 24,
|
|
220
|
+
height: 24,
|
|
221
|
+
fill: "none"
|
|
222
|
+
}, props), /*#__PURE__*/React.createElement("mask", {
|
|
223
|
+
id: "blur_on_svg__a",
|
|
224
|
+
width: 24,
|
|
225
|
+
height: 24,
|
|
226
|
+
x: 0,
|
|
227
|
+
y: 0,
|
|
228
|
+
maskUnits: "userSpaceOnUse",
|
|
229
|
+
style: {
|
|
230
|
+
maskType: "alpha"
|
|
231
|
+
}
|
|
232
|
+
}, _path$l || (_path$l = /*#__PURE__*/React.createElement("path", {
|
|
233
|
+
fill: "#D9D9D9",
|
|
234
|
+
d: "M0 0h24v24H0z"
|
|
235
|
+
}))), _g$l || (_g$l = /*#__PURE__*/React.createElement("g", {
|
|
236
|
+
mask: "url(#blur_on_svg__a)"
|
|
237
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
238
|
+
fill: "#2C3336",
|
|
239
|
+
d: "M3 14.5a.48.48 0 0 1-.35-.15.48.48 0 0 1 0-.7.48.48 0 0 1 .7 0 .48.48 0 0 1 0 .7.48.48 0 0 1-.35.15Zm0-4a.48.48 0 0 1-.35-.15.48.48 0 0 1 0-.7.48.48 0 0 1 .7 0 .48.48 0 0 1 0 .7.48.48 0 0 1-.35.15Zm3 8.423a.893.893 0 0 1-.658-.265.893.893 0 0 1-.265-.658c0-.262.088-.48.265-.658A.893.893 0 0 1 6 17.077c.262 0 .48.088.658.265a.893.893 0 0 1 .265.658c0 .262-.088.48-.265.658a.893.893 0 0 1-.658.265Zm0-4a.893.893 0 0 1-.658-.265.893.893 0 0 1-.265-.658c0-.261.088-.48.265-.658A.893.893 0 0 1 6 13.077c.262 0 .48.088.658.265a.893.893 0 0 1 .265.658c0 .261-.088.48-.265.658a.893.893 0 0 1-.658.265Zm0-4a.893.893 0 0 1-.658-.265.893.893 0 0 1-.265-.658c0-.262.088-.48.265-.658A.893.893 0 0 1 6 9.077c.262 0 .48.088.658.265a.893.893 0 0 1 .265.658c0 .261-.088.48-.265.658a.893.893 0 0 1-.658.265Zm0-4a.893.893 0 0 1-.658-.265A.893.893 0 0 1 5.077 6c0-.262.088-.48.265-.658A.893.893 0 0 1 6 5.077c.262 0 .48.088.658.265A.893.893 0 0 1 6.923 6c0 .262-.088.48-.265.658A.893.893 0 0 1 6 6.923Zm4.002 8.423c-.373 0-.691-.13-.954-.392a1.292 1.292 0 0 1-.394-.952c0-.373.13-.691.392-.954.261-.263.578-.394.952-.394.373 0 .691.13.954.392.263.261.394.578.394.952 0 .373-.13.691-.392.954a1.292 1.292 0 0 1-.952.394Zm0-4c-.373 0-.691-.13-.954-.392a1.292 1.292 0 0 1-.394-.952c0-.373.13-.691.392-.954.261-.263.578-.394.952-.394.373 0 .691.13.954.392.263.261.394.578.394.952 0 .373-.13.691-.392.954a1.292 1.292 0 0 1-.952.394ZM10 18.923a.893.893 0 0 1-.658-.265.893.893 0 0 1-.265-.658c0-.262.088-.48.265-.658a.893.893 0 0 1 .658-.265c.261 0 .48.088.658.265a.893.893 0 0 1 .265.658c0 .262-.088.48-.265.658a.893.893 0 0 1-.658.265Zm0-12a.893.893 0 0 1-.658-.265A.893.893 0 0 1 9.077 6c0-.262.088-.48.265-.658A.893.893 0 0 1 10 5.077c.261 0 .48.088.658.265a.893.893 0 0 1 .265.658c0 .262-.088.48-.265.658a.893.893 0 0 1-.658.265ZM10 21.5a.48.48 0 0 1-.35-.15.48.48 0 0 1 0-.7.48.48 0 0 1 .7 0 .48.48 0 0 1 0 .7.48.48 0 0 1-.35.15Zm0-18a.48.48 0 0 1-.35-.15.48.48 0 0 1 0-.7.48.48 0 0 1 .7 0 .48.48 0 0 1 0 .7.48.48 0 0 1-.35.15Zm4.002 11.846c-.373 0-.691-.13-.954-.392a1.292 1.292 0 0 1-.394-.952c0-.373.13-.691.392-.954.261-.263.578-.394.952-.394.373 0 .691.13.954.392.263.261.394.578.394.952 0 .373-.13.691-.392.954a1.292 1.292 0 0 1-.952.394Zm0-4c-.373 0-.691-.13-.954-.392a1.292 1.292 0 0 1-.394-.952c0-.373.13-.691.392-.954.261-.263.578-.394.952-.394.373 0 .691.13.954.392.263.261.394.578.394.952 0 .373-.13.691-.392.954a1.292 1.292 0 0 1-.952.394ZM14 18.923a.893.893 0 0 1-.658-.265.893.893 0 0 1-.265-.658c0-.262.088-.48.265-.658a.893.893 0 0 1 .658-.265c.261 0 .48.088.658.265a.893.893 0 0 1 .265.658c0 .262-.088.48-.265.658a.893.893 0 0 1-.658.265Zm0-12a.893.893 0 0 1-.658-.265.893.893 0 0 1-.265-.658c0-.262.088-.48.265-.658A.893.893 0 0 1 14 5.077c.261 0 .48.088.658.265a.893.893 0 0 1 .265.658c0 .262-.088.48-.265.658a.893.893 0 0 1-.658.265ZM14 21.5a.48.48 0 0 1-.35-.15.48.48 0 0 1 0-.7.48.48 0 0 1 .7 0 .48.48 0 0 1 0 .7.48.48 0 0 1-.35.15Zm0-18a.48.48 0 0 1-.35-.15.48.48 0 0 1 0-.7.48.48 0 0 1 .7 0 .48.48 0 0 1 0 .7.48.48 0 0 1-.35.15Zm4 15.423a.893.893 0 0 1-.658-.265.893.893 0 0 1-.265-.658c0-.262.088-.48.265-.658a.893.893 0 0 1 .658-.265c.262 0 .48.088.658.265a.893.893 0 0 1 .265.658c0 .262-.088.48-.265.658a.893.893 0 0 1-.658.265Zm0-4a.893.893 0 0 1-.658-.265.893.893 0 0 1-.265-.658c0-.261.088-.48.265-.658a.893.893 0 0 1 .658-.265c.262 0 .48.088.658.265a.893.893 0 0 1 .265.658c0 .261-.088.48-.265.658a.893.893 0 0 1-.658.265Zm0-4a.893.893 0 0 1-.658-.265.893.893 0 0 1-.265-.658c0-.262.088-.48.265-.658A.893.893 0 0 1 18 9.077c.262 0 .48.088.658.265a.893.893 0 0 1 .265.658c0 .261-.088.48-.265.658a.893.893 0 0 1-.658.265Zm0-4a.893.893 0 0 1-.658-.265.893.893 0 0 1-.265-.658c0-.262.088-.48.265-.658A.893.893 0 0 1 18 5.077c.262 0 .48.088.658.265a.893.893 0 0 1 .265.658c0 .262-.088.48-.265.658a.893.893 0 0 1-.658.265Zm3 7.577a.48.48 0 0 1-.35-.15.48.48 0 0 1 0-.7.48.48 0 0 1 .7 0 .48.48 0 0 1 0 .7.48.48 0 0 1-.35.15Zm0-4a.48.48 0 0 1-.35-.15.48.48 0 0 1 0-.7.48.48 0 0 1 .7 0 .48.48 0 0 1 0 .7.48.48 0 0 1-.35.15Z"
|
|
240
|
+
}))));
|
|
241
|
+
};
|
|
242
|
+
|
|
243
|
+
var _path$k, _g$k;
|
|
244
|
+
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); }
|
|
245
|
+
var SvgCached = function SvgCached(props) {
|
|
246
|
+
return /*#__PURE__*/React.createElement("svg", _extends$k({
|
|
247
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
248
|
+
width: 24,
|
|
249
|
+
height: 24,
|
|
250
|
+
fill: "none"
|
|
251
|
+
}, props), /*#__PURE__*/React.createElement("mask", {
|
|
252
|
+
id: "cached_svg__a",
|
|
253
|
+
width: 24,
|
|
254
|
+
height: 24,
|
|
255
|
+
x: 0,
|
|
256
|
+
y: 0,
|
|
257
|
+
maskUnits: "userSpaceOnUse",
|
|
258
|
+
style: {
|
|
259
|
+
maskType: "alpha"
|
|
260
|
+
}
|
|
261
|
+
}, _path$k || (_path$k = /*#__PURE__*/React.createElement("path", {
|
|
262
|
+
fill: "#D9D9D9",
|
|
263
|
+
d: "M0 0h24v24H0z"
|
|
264
|
+
}))), _g$k || (_g$k = /*#__PURE__*/React.createElement("g", {
|
|
265
|
+
mask: "url(#cached_svg__a)"
|
|
266
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
267
|
+
fill: "#2C3336",
|
|
268
|
+
d: "M12.05 19.75c-2.163 0-4.004-.753-5.522-2.258C5.009 15.987 4.25 14.156 4.25 12v-.78l-1.323 1.322a.725.725 0 0 1-.522.213.707.707 0 0 1-.532-.213.718.718 0 0 1-.217-.527c0-.206.072-.382.217-.527l2.494-2.494A.867.867 0 0 1 5 8.724c.241 0 .452.09.633.27l2.494 2.495c.138.138.21.312.212.521a.707.707 0 0 1-.212.532.718.718 0 0 1-.527.218.718.718 0 0 1-.527-.218L5.75 11.22V12c0 1.737.612 3.213 1.835 4.428 1.223 1.215 2.711 1.822 4.465 1.822.292 0 .584-.02.874-.06.29-.04.577-.107.859-.204a.879.879 0 0 1 .603.02.81.81 0 0 1 .426.396.678.678 0 0 1 .018.585.664.664 0 0 1-.444.388c-.376.133-.762.23-1.155.288a8.049 8.049 0 0 1-1.181.087Zm-.1-14c-.292 0-.584.02-.874.06-.29.04-.577.107-.859.203a.901.901 0 0 1-.61-.02.808.808 0 0 1-.434-.395.655.655 0 0 1-.023-.57.646.646 0 0 1 .423-.388c.387-.133.78-.231 1.176-.295a7.593 7.593 0 0 1 1.201-.095c2.163 0 4.004.753 5.522 2.258C18.991 8.013 19.75 9.844 19.75 12v.78l1.323-1.322a.725.725 0 0 1 .522-.213.707.707 0 0 1 .532.213c.145.144.217.32.217.527a.717.717 0 0 1-.217.527l-2.494 2.494a.867.867 0 0 1-.633.27.867.867 0 0 1-.633-.27l-2.494-2.495a.724.724 0 0 1-.212-.522.707.707 0 0 1 .212-.531.717.717 0 0 1 .527-.218c.206 0 .382.073.527.218l1.323 1.323V12c0-1.737-.611-3.213-1.835-4.428-1.223-1.215-2.711-1.822-4.465-1.822Z"
|
|
269
|
+
}))));
|
|
270
|
+
};
|
|
271
|
+
|
|
272
|
+
var _path$j, _g$j;
|
|
273
|
+
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); }
|
|
274
|
+
var SvgCheckCircle = function SvgCheckCircle(props) {
|
|
275
|
+
return /*#__PURE__*/React.createElement("svg", _extends$j({
|
|
276
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
277
|
+
fill: "none",
|
|
278
|
+
viewBox: "0 0 24 24"
|
|
279
|
+
}, props), /*#__PURE__*/React.createElement("mask", {
|
|
280
|
+
id: "check_circle_svg__a",
|
|
281
|
+
width: 24,
|
|
282
|
+
height: 24,
|
|
283
|
+
x: 0,
|
|
284
|
+
y: 0,
|
|
285
|
+
maskUnits: "userSpaceOnUse",
|
|
286
|
+
style: {
|
|
287
|
+
maskType: "alpha"
|
|
288
|
+
}
|
|
289
|
+
}, _path$j || (_path$j = /*#__PURE__*/React.createElement("path", {
|
|
290
|
+
fill: "#D9D9D9",
|
|
291
|
+
d: "M0 0h24v24H0z"
|
|
292
|
+
}))), _g$j || (_g$j = /*#__PURE__*/React.createElement("g", {
|
|
293
|
+
mask: "url(#check_circle_svg__a)"
|
|
294
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
295
|
+
fill: "#2C3336",
|
|
296
|
+
d: "m10.58 14.146-2.322-2.323a.724.724 0 0 0-.522-.212.707.707 0 0 0-.532.212.717.717 0 0 0-.217.527c0 .206.072.382.217.527l2.744 2.744a.87.87 0 0 0 .633.271c.24 0 .452-.09.632-.27l5.564-5.564a.725.725 0 0 0 .212-.522.707.707 0 0 0-.212-.532.718.718 0 0 0-.527-.217.717.717 0 0 0-.527.217l-5.142 5.142Zm1.422 7.354a9.255 9.255 0 0 1-3.705-.748 9.598 9.598 0 0 1-3.018-2.03 9.591 9.591 0 0 1-2.03-3.016 9.245 9.245 0 0 1-.749-3.704c0-1.314.25-2.55.748-3.705a9.597 9.597 0 0 1 2.03-3.018 9.592 9.592 0 0 1 3.016-2.03 9.245 9.245 0 0 1 3.704-.749c1.314 0 2.55.25 3.705.748a9.597 9.597 0 0 1 3.018 2.03 9.592 9.592 0 0 1 2.03 3.016 9.245 9.245 0 0 1 .749 3.704c0 1.314-.25 2.55-.748 3.705a9.598 9.598 0 0 1-2.03 3.018 9.592 9.592 0 0 1-3.016 2.03 9.245 9.245 0 0 1-3.704.749Z"
|
|
297
|
+
}))));
|
|
298
|
+
};
|
|
299
|
+
|
|
300
|
+
var _path$i, _g$i;
|
|
301
|
+
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); }
|
|
302
|
+
var SvgClose = function SvgClose(props) {
|
|
303
|
+
return /*#__PURE__*/React.createElement("svg", _extends$i({
|
|
304
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
305
|
+
width: 24,
|
|
306
|
+
height: 24,
|
|
307
|
+
fill: "none"
|
|
308
|
+
}, props), /*#__PURE__*/React.createElement("mask", {
|
|
309
|
+
id: "close_svg__a",
|
|
310
|
+
width: 24,
|
|
311
|
+
height: 24,
|
|
312
|
+
x: 0,
|
|
313
|
+
y: 0,
|
|
314
|
+
maskUnits: "userSpaceOnUse",
|
|
315
|
+
style: {
|
|
316
|
+
maskType: "alpha"
|
|
317
|
+
}
|
|
318
|
+
}, _path$i || (_path$i = /*#__PURE__*/React.createElement("path", {
|
|
319
|
+
fill: "#D9D9D9",
|
|
320
|
+
d: "M0 0h24v24H0z"
|
|
321
|
+
}))), _g$i || (_g$i = /*#__PURE__*/React.createElement("g", {
|
|
322
|
+
mask: "url(#close_svg__a)"
|
|
323
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
324
|
+
fill: "#2C3336",
|
|
325
|
+
d: "m12 13.054-5.073 5.073a.724.724 0 0 1-.522.212.707.707 0 0 1-.532-.212.717.717 0 0 1-.217-.527c0-.206.072-.382.217-.527L10.946 12 5.873 6.927a.725.725 0 0 1-.212-.522.707.707 0 0 1 .212-.532.717.717 0 0 1 .527-.217c.206 0 .382.072.527.217L12 10.946l5.073-5.073a.724.724 0 0 1 .522-.212.707.707 0 0 1 .532.212c.145.145.217.32.217.527a.717.717 0 0 1-.217.527L13.054 12l5.073 5.073c.138.139.21.313.212.522a.707.707 0 0 1-.212.532.717.717 0 0 1-.527.217.717.717 0 0 1-.527-.217L12 13.054Z"
|
|
326
|
+
}))));
|
|
327
|
+
};
|
|
328
|
+
|
|
329
|
+
var _path$h, _g$h;
|
|
330
|
+
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); }
|
|
331
|
+
var SvgDelete = function SvgDelete(props) {
|
|
332
|
+
return /*#__PURE__*/React.createElement("svg", _extends$h({
|
|
333
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
334
|
+
fill: "none",
|
|
335
|
+
viewBox: "0 0 24 24"
|
|
336
|
+
}, props), /*#__PURE__*/React.createElement("mask", {
|
|
337
|
+
id: "delete_svg__a",
|
|
338
|
+
width: 24,
|
|
339
|
+
height: 24,
|
|
340
|
+
x: 0,
|
|
341
|
+
y: 0,
|
|
342
|
+
maskUnits: "userSpaceOnUse",
|
|
343
|
+
style: {
|
|
344
|
+
maskType: "alpha"
|
|
345
|
+
}
|
|
346
|
+
}, _path$h || (_path$h = /*#__PURE__*/React.createElement("path", {
|
|
347
|
+
fill: "#D9D9D9",
|
|
348
|
+
d: "M0 0h24v24H0z"
|
|
349
|
+
}))), _g$h || (_g$h = /*#__PURE__*/React.createElement("g", {
|
|
350
|
+
mask: "url(#delete_svg__a)"
|
|
351
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
352
|
+
fill: "#2C3336",
|
|
353
|
+
d: "M7.308 20.5c-.505 0-.933-.175-1.283-.525a1.745 1.745 0 0 1-.525-1.283V6h-.25a.726.726 0 0 1-.535-.215.726.726 0 0 1-.215-.535.73.73 0 0 1 .215-.535.726.726 0 0 1 .535-.215H9a.84.84 0 0 1 .263-.63.889.889 0 0 1 .64-.255h4.193c.251 0 .465.085.64.254A.84.84 0 0 1 15 4.5h3.75a.73.73 0 0 1 .535.215.726.726 0 0 1 .215.535.726.726 0 0 1-.215.535.726.726 0 0 1-.535.215h-.25v12.692c0 .506-.175.933-.525 1.283-.35.35-.778.525-1.283.525H7.308ZM7 6v12.692a.3.3 0 0 0 .087.221.3.3 0 0 0 .22.087h9.385a.3.3 0 0 0 .221-.087.3.3 0 0 0 .087-.22V6H7Zm2.404 10.25a.73.73 0 0 0 .215.535.726.726 0 0 0 .535.215.726.726 0 0 0 .534-.215.726.726 0 0 0 .216-.535v-7.5a.726.726 0 0 0-.216-.535.726.726 0 0 0-.534-.215.726.726 0 0 0-.535.215.726.726 0 0 0-.215.535v7.5Zm3.692 0c0 .213.072.391.216.535a.726.726 0 0 0 .534.215.726.726 0 0 0 .535-.215.726.726 0 0 0 .215-.535v-7.5a.726.726 0 0 0-.215-.535.726.726 0 0 0-.535-.215.726.726 0 0 0-.534.215.726.726 0 0 0-.216.535v7.5ZM7 6v12.692a.3.3 0 0 0 .087.221.3.3 0 0 0 .22.087H7V6Z"
|
|
354
|
+
}))));
|
|
118
355
|
};
|
|
119
|
-
declare function Label({ htmlFor, children }: Props): React.JSX.Element;
|
|
120
356
|
|
|
121
|
-
|
|
357
|
+
var _path$g, _g$g;
|
|
358
|
+
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); }
|
|
359
|
+
var SvgInfo = function SvgInfo(props) {
|
|
360
|
+
return /*#__PURE__*/React.createElement("svg", _extends$g({
|
|
361
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
362
|
+
width: 24,
|
|
363
|
+
height: 24,
|
|
364
|
+
fill: "none"
|
|
365
|
+
}, props), /*#__PURE__*/React.createElement("mask", {
|
|
366
|
+
id: "info_svg__a",
|
|
367
|
+
width: 24,
|
|
368
|
+
height: 24,
|
|
369
|
+
x: 0,
|
|
370
|
+
y: 0,
|
|
371
|
+
maskUnits: "userSpaceOnUse",
|
|
372
|
+
style: {
|
|
373
|
+
maskType: "alpha"
|
|
374
|
+
}
|
|
375
|
+
}, _path$g || (_path$g = /*#__PURE__*/React.createElement("path", {
|
|
376
|
+
fill: "#D9D9D9",
|
|
377
|
+
d: "M0 0h24v24H0z"
|
|
378
|
+
}))), _g$g || (_g$g = /*#__PURE__*/React.createElement("g", {
|
|
379
|
+
mask: "url(#info_svg__a)"
|
|
380
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
381
|
+
fill: "#2C3336",
|
|
382
|
+
d: "M12 16.75c.213 0 .391-.072.535-.216A.726.726 0 0 0 12.75 16v-4.25a.726.726 0 0 0-.216-.534A.727.727 0 0 0 12 11a.725.725 0 0 0-.535.216.726.726 0 0 0-.215.534V16c0 .212.072.39.216.534a.726.726 0 0 0 .534.216Zm0-7.462c.229 0 .42-.077.575-.232a.781.781 0 0 0 .233-.575.782.782 0 0 0-.232-.576.782.782 0 0 0-.576-.232.781.781 0 0 0-.575.232.782.782 0 0 0-.233.576c0 .229.078.42.232.575a.781.781 0 0 0 .576.232Zm.002 12.212a9.255 9.255 0 0 1-3.705-.748 9.598 9.598 0 0 1-3.018-2.03 9.591 9.591 0 0 1-2.03-3.016 9.245 9.245 0 0 1-.749-3.704c0-1.314.25-2.55.748-3.705a9.597 9.597 0 0 1 2.03-3.018 9.592 9.592 0 0 1 3.016-2.03 9.245 9.245 0 0 1 3.704-.749c1.314 0 2.55.25 3.705.748a9.597 9.597 0 0 1 3.018 2.03 9.592 9.592 0 0 1 2.03 3.016 9.245 9.245 0 0 1 .749 3.704c0 1.314-.25 2.55-.748 3.705a9.598 9.598 0 0 1-2.03 3.018 9.592 9.592 0 0 1-3.016 2.03 9.245 9.245 0 0 1-3.704.749ZM12 20c2.233 0 4.125-.775 5.675-2.325C19.225 16.125 20 14.233 20 12c0-2.233-.775-4.125-2.325-5.675C16.125 4.775 14.233 4 12 4c-2.233 0-4.125.775-5.675 2.325C4.775 7.875 4 9.767 4 12c0 2.233.775 4.125 2.325 5.675C7.875 19.225 9.767 20 12 20Z"
|
|
383
|
+
}))));
|
|
384
|
+
};
|
|
385
|
+
|
|
386
|
+
var _path$f, _g$f;
|
|
387
|
+
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); }
|
|
388
|
+
var SvgInfo1 = function SvgInfo1(props) {
|
|
389
|
+
return /*#__PURE__*/React.createElement("svg", _extends$f({
|
|
390
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
391
|
+
fill: "none",
|
|
392
|
+
viewBox: "0 0 24 24"
|
|
393
|
+
}, props), /*#__PURE__*/React.createElement("mask", {
|
|
394
|
+
id: "info-1_svg__a",
|
|
395
|
+
width: 24,
|
|
396
|
+
height: 24,
|
|
397
|
+
x: 0,
|
|
398
|
+
y: 0,
|
|
399
|
+
maskUnits: "userSpaceOnUse",
|
|
400
|
+
style: {
|
|
401
|
+
maskType: "alpha"
|
|
402
|
+
}
|
|
403
|
+
}, _path$f || (_path$f = /*#__PURE__*/React.createElement("path", {
|
|
404
|
+
fill: "#D9D9D9",
|
|
405
|
+
d: "M0 0h24v24H0z"
|
|
406
|
+
}))), _g$f || (_g$f = /*#__PURE__*/React.createElement("g", {
|
|
407
|
+
mask: "url(#info-1_svg__a)"
|
|
408
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
409
|
+
fill: "#2C3336",
|
|
410
|
+
d: "M12 17a.97.97 0 0 0 .713-.288A.968.968 0 0 0 13 16v-4a.968.968 0 0 0-.287-.713A.968.968 0 0 0 12 11a.968.968 0 0 0-.713.287A.968.968 0 0 0 11 12v4c0 .283.096.52.287.712.192.192.43.288.713.288Zm0-8c.283 0 .52-.096.713-.287A.967.967 0 0 0 13 8a.967.967 0 0 0-.287-.713A.968.968 0 0 0 12 7a.968.968 0 0 0-.713.287A.967.967 0 0 0 11 8c0 .283.096.52.287.713.192.191.43.287.713.287Zm0 13a9.738 9.738 0 0 1-3.9-.788 10.099 10.099 0 0 1-3.175-2.137c-.9-.9-1.612-1.958-2.137-3.175A9.738 9.738 0 0 1 2 12a9.74 9.74 0 0 1 .788-3.9 10.099 10.099 0 0 1 2.137-3.175c.9-.9 1.958-1.612 3.175-2.137A9.738 9.738 0 0 1 12 2a9.74 9.74 0 0 1 3.9.788 10.098 10.098 0 0 1 3.175 2.137c.9.9 1.613 1.958 2.137 3.175A9.738 9.738 0 0 1 22 12a9.738 9.738 0 0 1-.788 3.9 10.098 10.098 0 0 1-2.137 3.175c-.9.9-1.958 1.613-3.175 2.137A9.738 9.738 0 0 1 12 22Z"
|
|
411
|
+
}))));
|
|
412
|
+
};
|
|
413
|
+
|
|
414
|
+
var _path$e, _g$e;
|
|
415
|
+
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); }
|
|
416
|
+
var SvgKeyboardArrowDown = function SvgKeyboardArrowDown(props) {
|
|
417
|
+
return /*#__PURE__*/React.createElement("svg", _extends$e({
|
|
418
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
419
|
+
fill: "none",
|
|
420
|
+
viewBox: "0 0 24 24"
|
|
421
|
+
}, props), /*#__PURE__*/React.createElement("mask", {
|
|
422
|
+
id: "keyboard_arrow_down_svg__a",
|
|
423
|
+
width: 24,
|
|
424
|
+
height: 24,
|
|
425
|
+
x: 0,
|
|
426
|
+
y: 0,
|
|
427
|
+
maskUnits: "userSpaceOnUse",
|
|
428
|
+
style: {
|
|
429
|
+
maskType: "alpha"
|
|
430
|
+
}
|
|
431
|
+
}, _path$e || (_path$e = /*#__PURE__*/React.createElement("path", {
|
|
432
|
+
fill: "#D9D9D9",
|
|
433
|
+
d: "M0 0h24v24H0z"
|
|
434
|
+
}))), _g$e || (_g$e = /*#__PURE__*/React.createElement("g", {
|
|
435
|
+
mask: "url(#keyboard_arrow_down_svg__a)"
|
|
436
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
437
|
+
fill: "#2C3336",
|
|
438
|
+
d: "M12 14.677a.93.93 0 0 1-.34-.066.84.84 0 0 1-.293-.19L6.873 9.927a.717.717 0 0 1-.217-.527c0-.206.072-.382.217-.527a.717.717 0 0 1 .527-.217c.206 0 .382.072.527.217L12 12.946l4.073-4.073a.717.717 0 0 1 .527-.217c.206 0 .382.072.527.217.145.145.217.32.217.527a.717.717 0 0 1-.217.527l-4.494 4.494a.83.83 0 0 1-.633.256Z"
|
|
439
|
+
}))));
|
|
440
|
+
};
|
|
441
|
+
|
|
442
|
+
var _path$d, _g$d;
|
|
443
|
+
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); }
|
|
444
|
+
var SvgMic1 = function SvgMic1(props) {
|
|
445
|
+
return /*#__PURE__*/React.createElement("svg", _extends$d({
|
|
446
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
447
|
+
width: 24,
|
|
448
|
+
height: 24,
|
|
449
|
+
fill: "none"
|
|
450
|
+
}, props), /*#__PURE__*/React.createElement("mask", {
|
|
451
|
+
id: "mic-1_svg__a",
|
|
452
|
+
width: 24,
|
|
453
|
+
height: 24,
|
|
454
|
+
x: 0,
|
|
455
|
+
y: 0,
|
|
456
|
+
maskUnits: "userSpaceOnUse",
|
|
457
|
+
style: {
|
|
458
|
+
maskType: "alpha"
|
|
459
|
+
}
|
|
460
|
+
}, _path$d || (_path$d = /*#__PURE__*/React.createElement("path", {
|
|
461
|
+
fill: "#D9D9D9",
|
|
462
|
+
d: "M0 0h24v24H0z"
|
|
463
|
+
}))), _g$d || (_g$d = /*#__PURE__*/React.createElement("g", {
|
|
464
|
+
mask: "url(#mic-1_svg__a)"
|
|
465
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
466
|
+
fill: "#2C3336",
|
|
467
|
+
d: "M12 13.5c-.699 0-1.29-.242-1.774-.726A2.413 2.413 0 0 1 9.5 11V5c0-.699.242-1.29.726-1.774A2.413 2.413 0 0 1 12 2.5c.698 0 1.29.242 1.774.726S14.5 4.301 14.5 5v6c0 .699-.242 1.29-.726 1.774A2.413 2.413 0 0 1 12 13.5Zm0 7.25a.726.726 0 0 1-.535-.215.726.726 0 0 1-.215-.535v-2.542c-1.512-.175-2.796-.79-3.854-1.848a6.295 6.295 0 0 1-1.85-3.814.644.644 0 0 1 .177-.558A.768.768 0 0 1 6.31 11c.176 0 .333.067.471.2a.898.898 0 0 1 .264.488c.165 1.218.716 2.242 1.652 3.07C9.634 15.586 10.734 16 12 16c1.265 0 2.366-.414 3.302-1.242.936-.828 1.486-1.852 1.652-3.07a.89.89 0 0 1 .266-.488c.14-.133.302-.2.484-.2a.75.75 0 0 1 .573.238.644.644 0 0 1 .177.558 6.295 6.295 0 0 1-1.85 3.814c-1.058 1.057-2.343 1.673-3.854 1.848V20a.726.726 0 0 1-.216.535.726.726 0 0 1-.534.215Z"
|
|
468
|
+
}))));
|
|
469
|
+
};
|
|
470
|
+
|
|
471
|
+
var _path$c, _g$c;
|
|
472
|
+
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); }
|
|
473
|
+
var SvgMic = function SvgMic(props) {
|
|
474
|
+
return /*#__PURE__*/React.createElement("svg", _extends$c({
|
|
475
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
476
|
+
width: 24,
|
|
477
|
+
height: 24,
|
|
478
|
+
fill: "none"
|
|
479
|
+
}, props), /*#__PURE__*/React.createElement("mask", {
|
|
480
|
+
id: "mic_svg__a",
|
|
481
|
+
width: 24,
|
|
482
|
+
height: 24,
|
|
483
|
+
x: 0,
|
|
484
|
+
y: 0,
|
|
485
|
+
maskUnits: "userSpaceOnUse",
|
|
486
|
+
style: {
|
|
487
|
+
maskType: "alpha"
|
|
488
|
+
}
|
|
489
|
+
}, _path$c || (_path$c = /*#__PURE__*/React.createElement("path", {
|
|
490
|
+
fill: "#D9D9D9",
|
|
491
|
+
d: "M0 0h24v24H0z"
|
|
492
|
+
}))), _g$c || (_g$c = /*#__PURE__*/React.createElement("g", {
|
|
493
|
+
mask: "url(#mic_svg__a)"
|
|
494
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
495
|
+
fill: "#2C3336",
|
|
496
|
+
d: "M12 13.5c-.699 0-1.29-.242-1.774-.726A2.413 2.413 0 0 1 9.5 11V5c0-.699.242-1.29.726-1.774A2.413 2.413 0 0 1 12 2.5c.698 0 1.29.242 1.774.726S14.5 4.301 14.5 5v6c0 .699-.242 1.29-.726 1.774A2.413 2.413 0 0 1 12 13.5Zm0 7.25a.726.726 0 0 1-.535-.215.726.726 0 0 1-.215-.535v-2.546c-1.512-.178-2.796-.795-3.854-1.85a6.273 6.273 0 0 1-1.85-3.808.644.644 0 0 1 .177-.558A.768.768 0 0 1 6.31 11c.176 0 .333.067.471.2a.898.898 0 0 1 .264.488c.165 1.218.716 2.242 1.652 3.07C9.634 15.586 10.734 16 12 16c1.265 0 2.366-.414 3.302-1.242.936-.828 1.486-1.852 1.652-3.07a.89.89 0 0 1 .266-.488c.14-.133.302-.2.484-.2a.75.75 0 0 1 .573.238.644.644 0 0 1 .177.558 6.273 6.273 0 0 1-1.85 3.809c-1.058 1.054-2.343 1.67-3.854 1.849V20a.726.726 0 0 1-.216.535.726.726 0 0 1-.534.215ZM12 12c.283 0 .52-.096.712-.287A.968.968 0 0 0 13 11V5a.967.967 0 0 0-.288-.713A.968.968 0 0 0 12 4a.968.968 0 0 0-.713.287A.967.967 0 0 0 11 5v6c0 .283.096.52.287.713.192.191.43.287.713.287Z"
|
|
497
|
+
}))));
|
|
498
|
+
};
|
|
499
|
+
|
|
500
|
+
var _path$b, _g$b;
|
|
501
|
+
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); }
|
|
502
|
+
var SvgMicOff1 = function SvgMicOff1(props) {
|
|
503
|
+
return /*#__PURE__*/React.createElement("svg", _extends$b({
|
|
504
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
505
|
+
width: 24,
|
|
506
|
+
height: 24,
|
|
507
|
+
fill: "none"
|
|
508
|
+
}, props), /*#__PURE__*/React.createElement("mask", {
|
|
509
|
+
id: "mic_off-1_svg__a",
|
|
510
|
+
width: 24,
|
|
511
|
+
height: 24,
|
|
512
|
+
x: 0,
|
|
513
|
+
y: 0,
|
|
514
|
+
maskUnits: "userSpaceOnUse",
|
|
515
|
+
style: {
|
|
516
|
+
maskType: "alpha"
|
|
517
|
+
}
|
|
518
|
+
}, _path$b || (_path$b = /*#__PURE__*/React.createElement("path", {
|
|
519
|
+
fill: "#D9D9D9",
|
|
520
|
+
d: "M0 0h24v24H0z"
|
|
521
|
+
}))), _g$b || (_g$b = /*#__PURE__*/React.createElement("g", {
|
|
522
|
+
mask: "url(#mic_off-1_svg__a)"
|
|
523
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
524
|
+
fill: "#2C3336",
|
|
525
|
+
d: "m17.24 14.18-1.103-1.122c.105-.193.199-.405.281-.636.083-.231.143-.476.18-.734a.89.89 0 0 1 .266-.488c.14-.133.302-.2.484-.2a.75.75 0 0 1 .573.238.644.644 0 0 1 .177.558c-.058.457-.16.88-.31 1.272a6.47 6.47 0 0 1-.548 1.113Zm-3.219-3.25-1.377-1.376V5a.967.967 0 0 0-.287-.713.968.968 0 0 0-.713-.287.968.968 0 0 0-.712.287.967.967 0 0 0-.288.713v2.535l-1.5-1.5V5c0-.699.242-1.29.726-1.774a2.413 2.413 0 0 1 1.774-.726c.699 0 1.29.242 1.774.726s.726 1.075.726 1.774v5.346c0 .113-.013.216-.038.308a5.62 5.62 0 0 1-.085.277Zm5.32 10.258L2.205 4.054a.725.725 0 0 1-.213-.522A.707.707 0 0 1 2.206 3a.717.717 0 0 1 .527-.217c.206 0 .382.072.527.217l17.134 17.135c.139.138.21.312.213.522a.707.707 0 0 1-.213.531.717.717 0 0 1-.527.218.717.717 0 0 1-.527-.218ZM10.893 20v-2.546c-1.511-.178-2.796-.795-3.854-1.85a6.273 6.273 0 0 1-1.85-3.808.644.644 0 0 1 .177-.558.768.768 0 0 1 .589-.238c.175 0 .332.067.47.2a.898.898 0 0 1 .264.488c.166 1.218.716 2.242 1.652 3.07.936.828 2.037 1.242 3.302 1.242.644 0 1.249-.115 1.815-.344a4.86 4.86 0 0 0 1.502-.954l1.07 1.07a6.593 6.593 0 0 1-1.65 1.128 5.849 5.849 0 0 1-1.987.554V20a.726.726 0 0 1-.215.535.726.726 0 0 1-.535.215.726.726 0 0 1-.534-.215.726.726 0 0 1-.216-.535Z"
|
|
526
|
+
}))));
|
|
527
|
+
};
|
|
528
|
+
|
|
529
|
+
var _path$a, _g$a;
|
|
530
|
+
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); }
|
|
531
|
+
var SvgMicOff = function SvgMicOff(props) {
|
|
532
|
+
return /*#__PURE__*/React.createElement("svg", _extends$a({
|
|
533
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
534
|
+
width: 24,
|
|
535
|
+
height: 24,
|
|
536
|
+
fill: "none"
|
|
537
|
+
}, props), /*#__PURE__*/React.createElement("mask", {
|
|
538
|
+
id: "mic_off_svg__a",
|
|
539
|
+
width: 24,
|
|
540
|
+
height: 24,
|
|
541
|
+
x: 0,
|
|
542
|
+
y: 0,
|
|
543
|
+
maskUnits: "userSpaceOnUse",
|
|
544
|
+
style: {
|
|
545
|
+
maskType: "alpha"
|
|
546
|
+
}
|
|
547
|
+
}, _path$a || (_path$a = /*#__PURE__*/React.createElement("path", {
|
|
548
|
+
fill: "#D9D9D9",
|
|
549
|
+
d: "M0 0h24v24H0z"
|
|
550
|
+
}))), _g$a || (_g$a = /*#__PURE__*/React.createElement("g", {
|
|
551
|
+
mask: "url(#mic_off_svg__a)"
|
|
552
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
553
|
+
fill: "#2C3336",
|
|
554
|
+
d: "m17.24 14.18-1.103-1.122c.105-.193.199-.405.281-.636.083-.231.143-.476.18-.734a.89.89 0 0 1 .266-.488c.14-.133.302-.2.484-.2a.75.75 0 0 1 .573.238.644.644 0 0 1 .177.558c-.058.457-.16.88-.31 1.272a6.47 6.47 0 0 1-.548 1.113Zm-3.219-3.25L9.144 6.036V5c0-.699.242-1.29.726-1.774a2.413 2.413 0 0 1 1.774-.726c.699 0 1.29.242 1.774.726s.726 1.075.726 1.774v5.346c0 .113-.013.216-.038.308a5.62 5.62 0 0 1-.085.277Zm5.32 10.258L2.205 4.054a.725.725 0 0 1-.213-.522A.707.707 0 0 1 2.206 3a.717.717 0 0 1 .527-.217c.206 0 .382.072.527.217l17.134 17.135c.139.138.21.312.213.522a.707.707 0 0 1-.213.531.717.717 0 0 1-.527.218.717.717 0 0 1-.527-.218ZM10.893 20v-2.542c-1.511-.175-2.796-.79-3.854-1.848a6.295 6.295 0 0 1-1.85-3.814.644.644 0 0 1 .177-.558.768.768 0 0 1 .589-.238c.175 0 .332.067.47.2a.898.898 0 0 1 .264.488c.166 1.218.716 2.242 1.652 3.07.936.828 2.037 1.242 3.302 1.242.644 0 1.249-.115 1.815-.344a4.86 4.86 0 0 0 1.502-.954l1.07 1.07a6.432 6.432 0 0 1-1.65 1.12 6.3 6.3 0 0 1-1.987.566V20a.726.726 0 0 1-.215.535.726.726 0 0 1-.535.215.726.726 0 0 1-.534-.215.726.726 0 0 1-.216-.535Z"
|
|
555
|
+
}))));
|
|
556
|
+
};
|
|
557
|
+
|
|
558
|
+
var _path$9, _g$9;
|
|
559
|
+
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); }
|
|
560
|
+
var SvgVideocam1 = function SvgVideocam1(props) {
|
|
561
|
+
return /*#__PURE__*/React.createElement("svg", _extends$9({
|
|
562
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
563
|
+
width: 24,
|
|
564
|
+
height: 24,
|
|
565
|
+
fill: "none"
|
|
566
|
+
}, props), /*#__PURE__*/React.createElement("mask", {
|
|
567
|
+
id: "videocam-1_svg__a",
|
|
568
|
+
width: 24,
|
|
569
|
+
height: 24,
|
|
570
|
+
x: 0,
|
|
571
|
+
y: 0,
|
|
572
|
+
maskUnits: "userSpaceOnUse",
|
|
573
|
+
style: {
|
|
574
|
+
maskType: "alpha"
|
|
575
|
+
}
|
|
576
|
+
}, _path$9 || (_path$9 = /*#__PURE__*/React.createElement("path", {
|
|
577
|
+
fill: "#D9D9D9",
|
|
578
|
+
d: "M0 0h24v24H0z"
|
|
579
|
+
}))), _g$9 || (_g$9 = /*#__PURE__*/React.createElement("g", {
|
|
580
|
+
mask: "url(#videocam-1_svg__a)"
|
|
581
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
582
|
+
fill: "#2C3336",
|
|
583
|
+
d: "M4.548 19.5c-.505 0-.933-.175-1.283-.525a1.745 1.745 0 0 1-.525-1.283V6.308c0-.505.175-.933.525-1.283.35-.35.778-.525 1.283-.525h11.384c.506 0 .933.175 1.283.525.35.35.525.778.525 1.283v4.577l2.737-2.737a.43.43 0 0 1 .499-.103c.189.075.283.22.283.434v7.042c0 .214-.094.359-.283.434a.43.43 0 0 1-.5-.103l-2.736-2.737v4.577c0 .505-.175.933-.525 1.283-.35.35-.777.525-1.283.525H4.548Z"
|
|
584
|
+
}))));
|
|
585
|
+
};
|
|
586
|
+
|
|
587
|
+
var _path$8, _g$8;
|
|
588
|
+
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); }
|
|
589
|
+
var SvgVideocam = function SvgVideocam(props) {
|
|
590
|
+
return /*#__PURE__*/React.createElement("svg", _extends$8({
|
|
591
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
592
|
+
width: 24,
|
|
593
|
+
height: 24,
|
|
594
|
+
fill: "none"
|
|
595
|
+
}, props), /*#__PURE__*/React.createElement("mask", {
|
|
596
|
+
id: "videocam_svg__a",
|
|
597
|
+
width: 24,
|
|
598
|
+
height: 24,
|
|
599
|
+
x: 0,
|
|
600
|
+
y: 0,
|
|
601
|
+
maskUnits: "userSpaceOnUse",
|
|
602
|
+
style: {
|
|
603
|
+
maskType: "alpha"
|
|
604
|
+
}
|
|
605
|
+
}, _path$8 || (_path$8 = /*#__PURE__*/React.createElement("path", {
|
|
606
|
+
fill: "#D9D9D9",
|
|
607
|
+
d: "M0 0h24v24H0z"
|
|
608
|
+
}))), _g$8 || (_g$8 = /*#__PURE__*/React.createElement("g", {
|
|
609
|
+
mask: "url(#videocam_svg__a)"
|
|
610
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
611
|
+
fill: "#2C3336",
|
|
612
|
+
d: "M4.548 19.5c-.505 0-.933-.175-1.283-.525a1.745 1.745 0 0 1-.525-1.283V6.308c0-.505.175-.933.525-1.283.35-.35.778-.525 1.283-.525h11.384c.506 0 .933.175 1.283.525.35.35.525.778.525 1.283v4.577l2.737-2.737c.154-.154.322-.19.506-.11s.276.227.276.44v7.043c0 .214-.092.361-.276.441-.184.08-.352.044-.506-.11l-2.737-2.737v4.577c0 .505-.175.933-.525 1.283-.35.35-.777.525-1.283.525H4.548Zm0-1.5h11.384a.3.3 0 0 0 .222-.087.3.3 0 0 0 .086-.22V6.307a.3.3 0 0 0-.086-.221.3.3 0 0 0-.222-.087H4.548a.3.3 0 0 0-.221.087.3.3 0 0 0-.087.22v11.385a.3.3 0 0 0 .087.221.3.3 0 0 0 .22.087Z"
|
|
613
|
+
}))));
|
|
614
|
+
};
|
|
615
|
+
|
|
616
|
+
var _path$7, _g$7;
|
|
617
|
+
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); }
|
|
618
|
+
var SvgVideocamOff1 = function SvgVideocamOff1(props) {
|
|
619
|
+
return /*#__PURE__*/React.createElement("svg", _extends$7({
|
|
620
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
621
|
+
width: 24,
|
|
622
|
+
height: 24,
|
|
623
|
+
fill: "none"
|
|
624
|
+
}, props), /*#__PURE__*/React.createElement("mask", {
|
|
625
|
+
id: "videocam_off-1_svg__a",
|
|
626
|
+
width: 24,
|
|
627
|
+
height: 24,
|
|
628
|
+
x: 0,
|
|
629
|
+
y: 0,
|
|
630
|
+
maskUnits: "userSpaceOnUse",
|
|
631
|
+
style: {
|
|
632
|
+
maskType: "alpha"
|
|
633
|
+
}
|
|
634
|
+
}, _path$7 || (_path$7 = /*#__PURE__*/React.createElement("path", {
|
|
635
|
+
fill: "#D9D9D9",
|
|
636
|
+
d: "M0 0h24v24H0z"
|
|
637
|
+
}))), _g$7 || (_g$7 = /*#__PURE__*/React.createElement("g", {
|
|
638
|
+
mask: "url(#videocam_off-1_svg__a)"
|
|
639
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
640
|
+
fill: "#2C3336",
|
|
641
|
+
d: "M19.471 21.63 2.061 4.222a.684.684 0 0 1-.207-.502c0-.196.078-.372.233-.527a.717.717 0 0 1 .527-.217c.206 0 .382.072.526.217l17.41 17.41a.684.684 0 0 1 .208.502.727.727 0 0 1-.233.527.702.702 0 0 1-.527.212.753.753 0 0 1-.527-.212Zm-1.677-6.618L7.283 4.5h8.704c.505 0 .932.175 1.282.525.35.35.525.778.525 1.283v4.577l2.737-2.737a.43.43 0 0 1 .499-.103c.189.075.284.22.284.434v7.042c0 .214-.095.359-.284.434a.43.43 0 0 1-.5-.103l-2.736-2.737v1.896ZM4.467 4.518l13.308 13.308c-.017.456-.209.85-.577 1.179-.368.33-.78.494-1.236.494H4.577c-.505 0-.933-.175-1.283-.525a1.745 1.745 0 0 1-.525-1.283V6.308c0-.457.168-.869.502-1.237.335-.368.734-.552 1.196-.552Z"
|
|
642
|
+
}))));
|
|
643
|
+
};
|
|
644
|
+
|
|
645
|
+
var _path$6, _g$6;
|
|
646
|
+
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); }
|
|
647
|
+
var SvgVideocamOff = function SvgVideocamOff(props) {
|
|
648
|
+
return /*#__PURE__*/React.createElement("svg", _extends$6({
|
|
649
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
650
|
+
width: 24,
|
|
651
|
+
height: 24,
|
|
652
|
+
fill: "none"
|
|
653
|
+
}, props), /*#__PURE__*/React.createElement("mask", {
|
|
654
|
+
id: "videocam_off_svg__a",
|
|
655
|
+
width: 24,
|
|
656
|
+
height: 24,
|
|
657
|
+
x: 0,
|
|
658
|
+
y: 0,
|
|
659
|
+
maskUnits: "userSpaceOnUse",
|
|
660
|
+
style: {
|
|
661
|
+
maskType: "alpha"
|
|
662
|
+
}
|
|
663
|
+
}, _path$6 || (_path$6 = /*#__PURE__*/React.createElement("path", {
|
|
664
|
+
fill: "#D9D9D9",
|
|
665
|
+
d: "M0 0h24v24H0z"
|
|
666
|
+
}))), _g$6 || (_g$6 = /*#__PURE__*/React.createElement("g", {
|
|
667
|
+
mask: "url(#videocam_off_svg__a)"
|
|
668
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
669
|
+
fill: "#2C3336",
|
|
670
|
+
d: "m20.506 15.852-2.737-2.737v1.896l-1.5-1.5V6.308a.3.3 0 0 0-.086-.221.3.3 0 0 0-.221-.087H8.758l-1.5-1.5h8.704c.505 0 .932.175 1.282.525.35.35.525.778.525 1.283v4.577l2.737-2.737c.154-.154.323-.19.507-.11s.276.227.276.44v7.043c0 .214-.092.361-.276.441-.184.08-.353.044-.507-.11Zm-1.06 5.779L2.036 4.22a.684.684 0 0 1-.207-.502c0-.196.078-.372.233-.527a.717.717 0 0 1 .527-.217c.206 0 .382.072.527.217l17.41 17.41a.684.684 0 0 1 .207.502.727.727 0 0 1-.233.527.724.724 0 0 1-.532.217.692.692 0 0 1-.522-.217ZM4.443 4.519 5.923 6H4.577a.3.3 0 0 0-.221.087.3.3 0 0 0-.087.22v11.385a.3.3 0 0 0 .087.221.3.3 0 0 0 .221.087h11.385a.3.3 0 0 0 .22-.087.3.3 0 0 0 .088-.22v-1.347l1.48 1.48a1.752 1.752 0 0 1-.558 1.187c-.34.325-.75.487-1.23.487H4.577c-.505 0-.933-.175-1.283-.525a1.745 1.745 0 0 1-.525-1.283V6.308c0-.48.163-.89.487-1.23.324-.34.72-.527 1.187-.559Z"
|
|
671
|
+
}))));
|
|
672
|
+
};
|
|
673
|
+
|
|
674
|
+
var _path$5, _g$5;
|
|
675
|
+
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); }
|
|
676
|
+
var SvgVolumeOff1 = function SvgVolumeOff1(props) {
|
|
677
|
+
return /*#__PURE__*/React.createElement("svg", _extends$5({
|
|
678
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
679
|
+
width: 24,
|
|
680
|
+
height: 24,
|
|
681
|
+
fill: "none"
|
|
682
|
+
}, props), /*#__PURE__*/React.createElement("mask", {
|
|
683
|
+
id: "volume_off-1_svg__a",
|
|
684
|
+
width: 24,
|
|
685
|
+
height: 24,
|
|
686
|
+
x: 0,
|
|
687
|
+
y: 0,
|
|
688
|
+
maskUnits: "userSpaceOnUse",
|
|
689
|
+
style: {
|
|
690
|
+
maskType: "alpha"
|
|
691
|
+
}
|
|
692
|
+
}, _path$5 || (_path$5 = /*#__PURE__*/React.createElement("path", {
|
|
693
|
+
fill: "#D9D9D9",
|
|
694
|
+
d: "M0 0h24v24H0z"
|
|
695
|
+
}))), _g$5 || (_g$5 = /*#__PURE__*/React.createElement("g", {
|
|
696
|
+
mask: "url(#volume_off-1_svg__a)"
|
|
697
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
698
|
+
fill: "#2C3336",
|
|
699
|
+
d: "m18.946 21.611-2.488-2.488c-.208.12-.414.235-.619.344a7.54 7.54 0 0 1-.643.304.673.673 0 0 1-.699-.091.796.796 0 0 1-.324-.674c0-.139.041-.26.124-.363a.803.803 0 0 1 .307-.235 4.822 4.822 0 0 0 .77-.37l-3.585-3.584v2.15c0 .405-.185.685-.555.841-.37.156-.697.091-.982-.193L7.5 14.5H4.692a.875.875 0 0 1-.645-.259.876.876 0 0 1-.258-.645v-3.192c0-.258.086-.473.258-.645a.876.876 0 0 1 .645-.259h2.143L2.523 5.188a.725.725 0 0 1-.212-.522.707.707 0 0 1 .212-.531.718.718 0 0 1 .527-.218c.206 0 .382.073.527.218L20 20.558c.139.138.21.312.212.522a.707.707 0 0 1-.212.532.717.717 0 0 1-.527.217.717.717 0 0 1-.527-.218ZM15.196 4.18a8.508 8.508 0 0 1 3.836 3.087c.966 1.401 1.449 2.97 1.449 4.709 0 .877-.13 1.719-.392 2.526-.26.807-.629 1.55-1.104 2.232l-1.075-1.075a6.768 6.768 0 0 0 1.07-3.683c0-1.441-.399-2.74-1.197-3.897a6.932 6.932 0 0 0-3.18-2.536.657.657 0 0 1-.43-.623c0-.277.108-.495.324-.654a.68.68 0 0 1 .7-.086Zm.727 9.492-1.75-1.75V8.296a3.85 3.85 0 0 1 1.564 1.55 4.385 4.385 0 0 1 .46 3.017c-.06.28-.152.55-.274.808ZM11.79 9.537 9.63 7.369l.621-.62c.285-.285.612-.35.982-.194.37.156.555.436.555.841v2.14Zm-1.5 5.613v-2.196L8.335 11H5.289v2h2.85l2.15 2.15Z"
|
|
700
|
+
}))));
|
|
701
|
+
};
|
|
702
|
+
|
|
703
|
+
var _path$4, _g$4;
|
|
704
|
+
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); }
|
|
705
|
+
var SvgVolumeOff = function SvgVolumeOff(props) {
|
|
706
|
+
return /*#__PURE__*/React.createElement("svg", _extends$4({
|
|
707
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
708
|
+
width: 24,
|
|
709
|
+
height: 24,
|
|
710
|
+
fill: "none"
|
|
711
|
+
}, props), /*#__PURE__*/React.createElement("mask", {
|
|
712
|
+
id: "volume_off_svg__a",
|
|
713
|
+
width: 24,
|
|
714
|
+
height: 24,
|
|
715
|
+
x: 0,
|
|
716
|
+
y: 0,
|
|
717
|
+
maskUnits: "userSpaceOnUse",
|
|
718
|
+
style: {
|
|
719
|
+
maskType: "alpha"
|
|
720
|
+
}
|
|
721
|
+
}, _path$4 || (_path$4 = /*#__PURE__*/React.createElement("path", {
|
|
722
|
+
fill: "#D9D9D9",
|
|
723
|
+
d: "M0 0h24v24H0z"
|
|
724
|
+
}))), _g$4 || (_g$4 = /*#__PURE__*/React.createElement("g", {
|
|
725
|
+
mask: "url(#volume_off_svg__a)"
|
|
726
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
727
|
+
fill: "#2C3336",
|
|
728
|
+
d: "m18.946 21.611-2.488-2.488c-.208.12-.414.235-.619.344a7.54 7.54 0 0 1-.643.304.673.673 0 0 1-.699-.091.796.796 0 0 1-.324-.674c0-.139.041-.26.124-.363a.803.803 0 0 1 .307-.235 4.822 4.822 0 0 0 .77-.37l-3.585-3.584v2.15c0 .405-.185.685-.555.841-.37.156-.697.091-.982-.193L7.5 14.5H4.692a.875.875 0 0 1-.645-.259.876.876 0 0 1-.258-.645v-3.192c0-.258.086-.473.258-.645a.876.876 0 0 1 .645-.259h2.143L2.523 5.188a.725.725 0 0 1-.212-.522.707.707 0 0 1 .212-.531.718.718 0 0 1 .527-.218c.206 0 .382.073.527.218L20 20.558c.139.138.21.312.212.522a.707.707 0 0 1-.212.532.717.717 0 0 1-.527.217.717.717 0 0 1-.527-.218ZM15.196 4.18a8.508 8.508 0 0 1 3.836 3.087c.966 1.401 1.449 2.97 1.449 4.709 0 .877-.13 1.719-.392 2.526-.26.807-.629 1.55-1.104 2.232l-1.075-1.075a6.768 6.768 0 0 0 1.07-3.683c0-1.441-.399-2.74-1.197-3.897a6.932 6.932 0 0 0-3.18-2.536.657.657 0 0 1-.43-.623c0-.277.108-.495.324-.654a.68.68 0 0 1 .7-.086Zm.727 9.492-1.75-1.75V8.296a3.85 3.85 0 0 1 1.564 1.55 4.385 4.385 0 0 1 .46 3.017c-.06.28-.152.55-.274.808ZM11.79 9.537 9.63 7.369l.621-.62c.285-.285.612-.35.982-.194.37.156.555.436.555.841v2.14Z"
|
|
729
|
+
}))));
|
|
730
|
+
};
|
|
731
|
+
|
|
732
|
+
var _path$3, _g$3;
|
|
733
|
+
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); }
|
|
734
|
+
var SvgVolumeUp1 = function SvgVolumeUp1(props) {
|
|
735
|
+
return /*#__PURE__*/React.createElement("svg", _extends$3({
|
|
736
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
737
|
+
width: 24,
|
|
738
|
+
height: 24,
|
|
739
|
+
fill: "none"
|
|
740
|
+
}, props), /*#__PURE__*/React.createElement("mask", {
|
|
741
|
+
id: "volume_up-1_svg__a",
|
|
742
|
+
width: 24,
|
|
743
|
+
height: 24,
|
|
744
|
+
x: 0,
|
|
745
|
+
y: 0,
|
|
746
|
+
maskUnits: "userSpaceOnUse",
|
|
747
|
+
style: {
|
|
748
|
+
maskType: "alpha"
|
|
749
|
+
}
|
|
750
|
+
}, _path$3 || (_path$3 = /*#__PURE__*/React.createElement("path", {
|
|
751
|
+
fill: "#D9D9D9",
|
|
752
|
+
d: "M0 0h24v24H0z"
|
|
753
|
+
}))), _g$3 || (_g$3 = /*#__PURE__*/React.createElement("g", {
|
|
754
|
+
mask: "url(#volume_up-1_svg__a)"
|
|
755
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
756
|
+
fill: "#2C3336",
|
|
757
|
+
d: "M15.061 19.771a.673.673 0 0 1-.699-.092.797.797 0 0 1-.324-.675.56.56 0 0 1 .124-.36.803.803 0 0 1 .307-.236 6.933 6.933 0 0 0 3.179-2.536c.799-1.157 1.198-2.456 1.198-3.897 0-1.441-.4-2.74-1.198-3.897a6.932 6.932 0 0 0-3.179-2.536.654.654 0 0 1-.43-.625c0-.275.107-.493.323-.652a.68.68 0 0 1 .7-.086 8.551 8.551 0 0 1 3.83 3.085c.97 1.4 1.454 2.97 1.454 4.711s-.485 3.312-1.454 4.71a8.552 8.552 0 0 1-3.83 3.086ZM4.558 14.5a.875.875 0 0 1-.644-.26.875.875 0 0 1-.26-.644v-3.192c0-.256.086-.47.26-.644a.874.874 0 0 1 .644-.26h2.807l2.752-2.752c.285-.284.612-.348.982-.192.37.157.555.437.555.84v9.208c0 .403-.185.683-.555.84-.37.156-.697.093-.982-.192L7.365 14.5H4.558Zm9.48 1.154V8.296c.648.35 1.162.858 1.544 1.524a4.31 4.31 0 0 1 .572 2.18c0 .787-.191 1.505-.572 2.155a3.932 3.932 0 0 1-1.544 1.499ZM10.154 8.85 8.004 11h-2.85v2h2.85l2.15 2.15v-6.3Z"
|
|
758
|
+
}))));
|
|
759
|
+
};
|
|
760
|
+
|
|
761
|
+
var _path$2, _g$2;
|
|
762
|
+
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); }
|
|
763
|
+
var SvgVolumeUp = function SvgVolumeUp(props) {
|
|
764
|
+
return /*#__PURE__*/React.createElement("svg", _extends$2({
|
|
765
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
766
|
+
width: 24,
|
|
767
|
+
height: 24,
|
|
768
|
+
fill: "none"
|
|
769
|
+
}, props), /*#__PURE__*/React.createElement("mask", {
|
|
770
|
+
id: "volume_up_svg__a",
|
|
771
|
+
width: 24,
|
|
772
|
+
height: 24,
|
|
773
|
+
x: 0,
|
|
774
|
+
y: 0,
|
|
775
|
+
maskUnits: "userSpaceOnUse",
|
|
776
|
+
style: {
|
|
777
|
+
maskType: "alpha"
|
|
778
|
+
}
|
|
779
|
+
}, _path$2 || (_path$2 = /*#__PURE__*/React.createElement("path", {
|
|
780
|
+
fill: "#D9D9D9",
|
|
781
|
+
d: "M0 0h24v24H0z"
|
|
782
|
+
}))), _g$2 || (_g$2 = /*#__PURE__*/React.createElement("g", {
|
|
783
|
+
mask: "url(#volume_up_svg__a)"
|
|
784
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
785
|
+
fill: "#2C3336",
|
|
786
|
+
d: "M15.061 19.771a.673.673 0 0 1-.699-.091.796.796 0 0 1-.324-.674c0-.139.042-.26.124-.363a.803.803 0 0 1 .307-.235 6.933 6.933 0 0 0 3.179-2.536c.799-1.157 1.198-2.456 1.198-3.897 0-1.441-.4-2.74-1.198-3.897a6.932 6.932 0 0 0-3.179-2.536.658.658 0 0 1-.32-.248.661.661 0 0 1-.11-.375c0-.277.107-.495.323-.654a.68.68 0 0 1 .7-.086 8.547 8.547 0 0 1 3.83 3.087c.97 1.401 1.454 2.97 1.454 4.709 0 1.738-.485 3.308-1.454 4.709a8.547 8.547 0 0 1-3.83 3.087ZM4.558 14.5a.876.876 0 0 1-.646-.259.876.876 0 0 1-.258-.645v-3.192c0-.258.086-.473.258-.645a.876.876 0 0 1 .646-.259h2.807l2.752-2.752c.285-.284.612-.349.982-.193.37.156.555.436.555.841v9.208c0 .405-.185.685-.555.841-.37.156-.697.091-.982-.193L7.365 14.5H4.558Zm9.48 1.154V8.296c.648.35 1.162.858 1.544 1.524a4.31 4.31 0 0 1 .572 2.18c0 .787-.191 1.505-.572 2.155a3.932 3.932 0 0 1-1.544 1.499Z"
|
|
787
|
+
}))));
|
|
788
|
+
};
|
|
789
|
+
|
|
790
|
+
var _path$1, _g$1;
|
|
791
|
+
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); }
|
|
792
|
+
var SvgWarning = function SvgWarning(props) {
|
|
793
|
+
return /*#__PURE__*/React.createElement("svg", _extends$1({
|
|
794
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
795
|
+
fill: "none",
|
|
796
|
+
viewBox: "0 0 24 24"
|
|
797
|
+
}, props), /*#__PURE__*/React.createElement("mask", {
|
|
798
|
+
id: "warning_svg__a",
|
|
799
|
+
width: 24,
|
|
800
|
+
height: 24,
|
|
801
|
+
x: 0,
|
|
802
|
+
y: 0,
|
|
803
|
+
maskUnits: "userSpaceOnUse",
|
|
804
|
+
style: {
|
|
805
|
+
maskType: "alpha"
|
|
806
|
+
}
|
|
807
|
+
}, _path$1 || (_path$1 = /*#__PURE__*/React.createElement("path", {
|
|
808
|
+
fill: "#D9D9D9",
|
|
809
|
+
d: "M0 0h24v24H0z"
|
|
810
|
+
}))), _g$1 || (_g$1 = /*#__PURE__*/React.createElement("g", {
|
|
811
|
+
mask: "url(#warning_svg__a)"
|
|
812
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
813
|
+
fill: "#2C3336",
|
|
814
|
+
d: "M2.725 21a.973.973 0 0 1-.85-.5 1.098 1.098 0 0 1-.138-.488.898.898 0 0 1 .138-.512l9.25-16a.98.98 0 0 1 .387-.375C11.671 3.042 11.833 3 12 3c.166 0 .329.042.487.125a.983.983 0 0 1 .388.375l9.25 16c.1.167.146.337.137.512a1.098 1.098 0 0 1-.137.488.973.973 0 0 1-.85.5H2.725ZM12 18c.283 0 .52-.096.712-.288A.968.968 0 0 0 13 17a.968.968 0 0 0-.288-.712A.968.968 0 0 0 12 16a.968.968 0 0 0-.713.288A.968.968 0 0 0 11 17c0 .283.096.52.287.712.192.192.43.288.713.288Zm0-3a.97.97 0 0 0 .712-.287A.968.968 0 0 0 13 14v-3a.968.968 0 0 0-.288-.713A.968.968 0 0 0 12 10a.968.968 0 0 0-.713.287A.968.968 0 0 0 11 11v3c0 .283.096.52.287.713.192.191.43.287.713.287Z"
|
|
815
|
+
}))));
|
|
816
|
+
};
|
|
817
|
+
|
|
818
|
+
var _path, _g;
|
|
819
|
+
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); }
|
|
820
|
+
var SvgWarning1 = function SvgWarning1(props) {
|
|
821
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
822
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
823
|
+
width: 24,
|
|
824
|
+
height: 24,
|
|
825
|
+
fill: "none"
|
|
826
|
+
}, props), /*#__PURE__*/React.createElement("mask", {
|
|
827
|
+
id: "warning-1_svg__a",
|
|
828
|
+
width: 24,
|
|
829
|
+
height: 24,
|
|
830
|
+
x: 0,
|
|
831
|
+
y: 0,
|
|
832
|
+
maskUnits: "userSpaceOnUse",
|
|
833
|
+
style: {
|
|
834
|
+
maskType: "alpha"
|
|
835
|
+
}
|
|
836
|
+
}, _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
837
|
+
fill: "#D9D9D9",
|
|
838
|
+
d: "M0 0h24v24H0z"
|
|
839
|
+
}))), _g || (_g = /*#__PURE__*/React.createElement("g", {
|
|
840
|
+
mask: "url(#warning-1_svg__a)"
|
|
841
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
842
|
+
fill: "#2C3336",
|
|
843
|
+
d: "M3.426 20.5a.878.878 0 0 1-.772-.452.955.955 0 0 1-.129-.437.816.816 0 0 1 .127-.467l8.561-14.788A.896.896 0 0 1 12 3.904a.897.897 0 0 1 .787.452l8.56 14.788c.093.154.136.31.128.467a.955.955 0 0 1-.129.437.878.878 0 0 1-.771.452H3.425ZM4.45 19h15.1L12 6 4.45 19ZM12 17.808c.229 0 .42-.078.576-.232a.781.781 0 0 0 .232-.576.781.781 0 0 0-.232-.575.782.782 0 0 0-.576-.233.781.781 0 0 0-.575.233.781.781 0 0 0-.233.575c0 .229.078.42.233.576a.781.781 0 0 0 .575.232Zm0-2.616c.213 0 .391-.072.535-.215a.726.726 0 0 0 .215-.535v-3.5a.725.725 0 0 0-.216-.534.726.726 0 0 0-.534-.216.725.725 0 0 0-.534.216.726.726 0 0 0-.216.534v3.5c0 .213.072.391.216.535a.726.726 0 0 0 .534.215Z"
|
|
844
|
+
}))));
|
|
845
|
+
};
|
|
846
|
+
|
|
847
|
+
declare namespace index {
|
|
848
|
+
export {
|
|
849
|
+
SvgAdd as AddIcon,
|
|
850
|
+
SvgKeyboardArrowDown as ArrowDownIcon,
|
|
851
|
+
SvgBlock as BlockIcon,
|
|
852
|
+
SvgBlurOn as BlurOnIcon,
|
|
853
|
+
SvgCached as CachedIcon,
|
|
854
|
+
SvgCheckCircle as CheckCircleIcon,
|
|
855
|
+
SvgClose as CloseIcon,
|
|
856
|
+
SvgDelete as DeleteIcon,
|
|
857
|
+
SvgInfo as InfoIcon,
|
|
858
|
+
SvgInfo1 as InfoSolidIcon,
|
|
859
|
+
SvgMicOff1 as MicOffIcon,
|
|
860
|
+
SvgMicOff as MicOffSolidIcon,
|
|
861
|
+
SvgMic1 as MicOnSolidIcon,
|
|
862
|
+
SvgMic as MicOnfIcon,
|
|
863
|
+
SvgVideocamOff as VideoCamOffIcon,
|
|
864
|
+
SvgVideocamOff1 as VideoCamOffSolidIcon,
|
|
865
|
+
SvgVideocam as VideoCamOnIcon,
|
|
866
|
+
SvgVideocam1 as VideoCamOnSolidIcon,
|
|
867
|
+
SvgVolumeOff1 as VolumeOffIcon,
|
|
868
|
+
SvgVolumeOff as VolumeOffSolidIcon,
|
|
869
|
+
SvgVolumeUp1 as VolumeUpIcon,
|
|
870
|
+
SvgVolumeUp as VolumeUpSolidIcon,
|
|
871
|
+
SvgWarning1 as WarningIcon,
|
|
872
|
+
SvgWarning as WarningSolidIcon,
|
|
873
|
+
};
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
export { Alert, Button, FormGroup, Label, Modal, Progress, Select, SelectItem, SelectItemText, Switch, Tab, TabsContent, TabsList, TabsRoot, Tooltip, index as icons };
|