react-icons-components 1.2.1 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -13
- package/dist/index.d.ts +0 -14
- package/dist/index.esm.js +1 -147
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/dist/BeContract.d.ts +0 -7
- package/dist/BeDepartments.d.ts +0 -7
- package/dist/BeEmployee.d.ts +0 -7
- package/dist/BeInsurance.d.ts +0 -7
- package/dist/BeOrganization.d.ts +0 -7
- package/dist/BeSalary.d.ts +0 -7
- package/dist/BoxArrowInLeft.d.ts +0 -7
- package/dist/BoxArrowInRight.d.ts +0 -7
- package/dist/ChevronBarDown.d.ts +0 -7
- package/dist/ChevronBarUp.d.ts +0 -7
- package/dist/Departments.d.ts +0 -7
- package/dist/Employ.d.ts +0 -7
- package/dist/Insurance.d.ts +0 -7
- package/dist/Luong.d.ts +0 -7
package/README.md
CHANGED
|
@@ -1,26 +1,27 @@
|
|
|
1
|
-
##
|
|
1
|
+
## React icons components
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
#### What is becoxy-icons?
|
|
5
|
-
becoxy-icons is a collection of simply beautiful open source icons for React.js. Each icon is designed on a 24x24 grid with an emphasis on simplicity, consistency and readability.
|
|
6
4
|
|
|
7
|
-
####
|
|
5
|
+
#### What is React icons components?
|
|
6
|
+
React icons components is a collection of simply beautiful open source icons for React.js. Each icon is designed on a 24x24 grid with an emphasis on simplicity, consistency and readability.
|
|
7
|
+
|
|
8
|
+
#### Based on React icons components
|
|
8
9
|
|
|
9
10
|
### Installation
|
|
10
|
-
yarn add
|
|
11
|
+
yarn add react-icons-components
|
|
11
12
|
|
|
12
13
|
or
|
|
13
14
|
|
|
14
|
-
npm i
|
|
15
|
+
npm i react-icons-components
|
|
15
16
|
|
|
16
17
|
### Usage
|
|
17
18
|
|
|
18
19
|
```javascript
|
|
19
20
|
import React from 'react';
|
|
20
|
-
import {
|
|
21
|
+
import { Home } from 'react-icons-components';
|
|
21
22
|
|
|
22
23
|
const App = () => {
|
|
23
|
-
return <
|
|
24
|
+
return <Home />
|
|
24
25
|
};
|
|
25
26
|
|
|
26
27
|
export default App;
|
|
@@ -28,17 +29,17 @@ export default App;
|
|
|
28
29
|
|
|
29
30
|
Icons can be configured with inline props:
|
|
30
31
|
```javascript
|
|
31
|
-
<
|
|
32
|
+
<Home color="red" />
|
|
32
33
|
```
|
|
33
34
|
|
|
34
35
|
If you can't use ES6 imports, it's possible to include icons from the compiled folder ./dist.
|
|
35
36
|
```javascript
|
|
36
|
-
var
|
|
37
|
+
var Home = require('react-icons-components/dist/Home').default;
|
|
37
38
|
|
|
38
39
|
var MyComponent = React.createClass({
|
|
39
40
|
render: function () {
|
|
40
41
|
return (
|
|
41
|
-
<
|
|
42
|
+
<Home />
|
|
42
43
|
);
|
|
43
44
|
}
|
|
44
45
|
});
|
|
@@ -47,11 +48,21 @@ You can also include the whole icon pack:
|
|
|
47
48
|
|
|
48
49
|
```javascript
|
|
49
50
|
import React from 'react';
|
|
50
|
-
import * as Icon from '
|
|
51
|
+
import * as Icon from 'react-icons-components';
|
|
51
52
|
|
|
52
53
|
const App = () => {
|
|
53
|
-
return <Icon.
|
|
54
|
+
return <Icon.Home />
|
|
54
55
|
};
|
|
55
56
|
|
|
56
57
|
export default App;
|
|
57
58
|
```
|
|
59
|
+
|
|
60
|
+
## Props
|
|
61
|
+
|
|
62
|
+
| Key | Default | Type |
|
|
63
|
+
|-------------|-----------------------|------------------------------------|
|
|
64
|
+
| `color` | `undefined` (inherit) | String |
|
|
65
|
+
| `fontSize` | `24` | String or Number |
|
|
66
|
+
| `className` | `undefined` | string |
|
|
67
|
+
| `style` | `undefined` | Can overwrite size and color |
|
|
68
|
+
| `title` | `undefined` | Icon description for accessibility |
|
package/dist/index.d.ts
CHANGED
|
@@ -28,12 +28,6 @@ export { default as BarChart2 } from "./BarChart2";
|
|
|
28
28
|
export { default as BarChart } from "./BarChart";
|
|
29
29
|
export { default as BatteryCharging } from "./BatteryCharging";
|
|
30
30
|
export { default as Battery } from "./Battery";
|
|
31
|
-
export { default as BeContract } from "./BeContract";
|
|
32
|
-
export { default as BeDepartments } from "./BeDepartments";
|
|
33
|
-
export { default as BeEmployee } from "./BeEmployee";
|
|
34
|
-
export { default as BeInsurance } from "./BeInsurance";
|
|
35
|
-
export { default as BeOrganization } from "./BeOrganization";
|
|
36
|
-
export { default as BeSalary } from "./BeSalary";
|
|
37
31
|
export { default as BellOff } from "./BellOff";
|
|
38
32
|
export { default as Bell } from "./Bell";
|
|
39
33
|
export { default as Bluetooth } from "./Bluetooth";
|
|
@@ -41,8 +35,6 @@ export { default as Bold } from "./Bold";
|
|
|
41
35
|
export { default as BookOpen } from "./BookOpen";
|
|
42
36
|
export { default as Book } from "./Book";
|
|
43
37
|
export { default as Bookmark } from "./Bookmark";
|
|
44
|
-
export { default as BoxArrowInLeft } from "./BoxArrowInLeft";
|
|
45
|
-
export { default as BoxArrowInRight } from "./BoxArrowInRight";
|
|
46
38
|
export { default as Box } from "./Box";
|
|
47
39
|
export { default as Briefcase } from "./Briefcase";
|
|
48
40
|
export { default as Calendar } from "./Calendar";
|
|
@@ -52,8 +44,6 @@ export { default as Cast } from "./Cast";
|
|
|
52
44
|
export { default as CheckCircle } from "./CheckCircle";
|
|
53
45
|
export { default as CheckSquare } from "./CheckSquare";
|
|
54
46
|
export { default as Check } from "./Check";
|
|
55
|
-
export { default as ChevronBarDown } from "./ChevronBarDown";
|
|
56
|
-
export { default as ChevronBarUp } from "./ChevronBarUp";
|
|
57
47
|
export { default as ChevronDown } from "./ChevronDown";
|
|
58
48
|
export { default as ChevronLeft } from "./ChevronLeft";
|
|
59
49
|
export { default as ChevronRight } from "./ChevronRight";
|
|
@@ -94,7 +84,6 @@ export { default as Crop } from "./Crop";
|
|
|
94
84
|
export { default as Crosshair } from "./Crosshair";
|
|
95
85
|
export { default as Database } from "./Database";
|
|
96
86
|
export { default as Delete } from "./Delete";
|
|
97
|
-
export { default as Departments } from "./Departments";
|
|
98
87
|
export { default as Disc } from "./Disc";
|
|
99
88
|
export { default as DivideCircle } from "./DivideCircle";
|
|
100
89
|
export { default as DivideSquare } from "./DivideSquare";
|
|
@@ -107,7 +96,6 @@ export { default as Droplet } from "./Droplet";
|
|
|
107
96
|
export { default as Edit2 } from "./Edit2";
|
|
108
97
|
export { default as Edit3 } from "./Edit3";
|
|
109
98
|
export { default as Edit } from "./Edit";
|
|
110
|
-
export { default as Employ } from "./Employ";
|
|
111
99
|
export { default as ExternalLink } from "./ExternalLink";
|
|
112
100
|
export { default as EyeOff } from "./EyeOff";
|
|
113
101
|
export { default as Eye } from "./Eye";
|
|
@@ -147,7 +135,6 @@ export { default as Image } from "./Image";
|
|
|
147
135
|
export { default as Inbox } from "./Inbox";
|
|
148
136
|
export { default as Info } from "./Info";
|
|
149
137
|
export { default as Instagram } from "./Instagram";
|
|
150
|
-
export { default as Insurance } from "./Insurance";
|
|
151
138
|
export { default as Italic } from "./Italic";
|
|
152
139
|
export { default as Key } from "./Key";
|
|
153
140
|
export { default as Layers } from "./Layers";
|
|
@@ -161,7 +148,6 @@ export { default as Loader } from "./Loader";
|
|
|
161
148
|
export { default as Lock } from "./Lock";
|
|
162
149
|
export { default as LogIn } from "./LogIn";
|
|
163
150
|
export { default as LogOut } from "./LogOut";
|
|
164
|
-
export { default as Luong } from "./Luong";
|
|
165
151
|
export { default as Mail } from "./Mail";
|
|
166
152
|
export { default as MapPin } from "./MapPin";
|
|
167
153
|
export { default as Map } from "./Map";
|
package/dist/index.esm.js
CHANGED
|
@@ -259,76 +259,6 @@ var SvgBattery = function (_a) {
|
|
|
259
259
|
React.createElement("path", { d: "M23 13v-2" })));
|
|
260
260
|
};
|
|
261
261
|
|
|
262
|
-
var SvgBeContract = function (_a) {
|
|
263
|
-
var title = _a.title, titleId = _a.titleId, props = __rest(_a, ["title", "titleId"]);
|
|
264
|
-
return (React.createElement("svg", __assign({ width: props.fontSize || 24, height: props.fontSize || 24, viewBox: "0 0 24 24", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", strokeWidth: props.strokeWidth || 1.5, "aria-labelledby": titleId }, props),
|
|
265
|
-
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
266
|
-
React.createElement("g", { clipPath: "url(#be-contract_svg__a)", fill: props.color || "currentColor" },
|
|
267
|
-
React.createElement("path", { d: "M3.944 10.654a.398.398 0 1 0 0-.797.398.398 0 0 0 0 .797Z" }),
|
|
268
|
-
React.createElement("path", { d: "M23.897 8.21 19.38 3.692a.351.351 0 0 0-.497 0l-1.677 1.677a.351.351 0 1 0 .497.496l1.428-1.428 4.022 4.022-3.127 3.127-4.022-4.022.92-.92a.351.351 0 0 0-.496-.497L15.26 7.315a.351.351 0 0 0 0 .497l.12.12-1.127 1.126a.351.351 0 0 0 0 .496l.07.07-.588.589-.444-.018a2.009 2.009 0 0 0-1.305.418 2.009 2.009 0 0 0-1.275-.396l-.444.018-.588-.588.07-.07a.351.351 0 0 0 0-.497L8.62 7.954l.12-.12a.351.351 0 0 0 0-.496L5.118 3.714a.351.351 0 0 0-.497 0L.103 8.233a.351.351 0 0 0 0 .496l.837.837a.35.35 0 1 0 .496-.496L.847 8.48 4.87 4.46l3.127 3.127-4.023 4.022-1.738-1.739a.351.351 0 0 0-.497.497l1.987 1.987a.351.351 0 0 0 .497 0l.12-.12 1.126 1.127a.351.351 0 0 0 .496 0l.012-.012.609.609.069.652c.063.6.333 1.167.76 1.594l.35.35-.273.274a1.006 1.006 0 0 0 0 1.421l.007.007c.096.096.207.169.326.218a1.006 1.006 0 0 0 .222 1.085l.007.006c.35.35.896.388 1.288.113.047.095.11.183.188.26l.007.008c.392.392 1.03.392 1.422 0l.132-.133c.047.09.108.173.182.247l.007.007a1.002 1.002 0 0 0 1.305.098.98.98 0 0 0 1.584-.429.98.98 0 0 0 .896-.267.978.978 0 0 0 .286-.655.977.977 0 0 0 .857-.977.985.985 0 0 0 .53-1.664l-.073-.074c.38-.416.621-.948.68-1.511l.07-.652.608-.61.012.012a.351.351 0 0 0 .497 0l1.126-1.126.12.12a.351.351 0 0 0 .496 0l3.623-3.624a.351.351 0 0 0 0-.497ZM5.728 12.603l-.011.012-.878-.878L8.125 8.45l.878.878-3.275 3.275Zm1.625 1.933-.082-.776a.352.352 0 0 0-.1-.212l-.698-.697 2.708-2.708.697.697c.07.07.165.107.263.103l.597-.024c.257-.01.51.057.728.189L9.364 13.21a.971.971 0 0 0-.066.073l-.008.011a.99.99 0 0 0-.05.067v.002a.96.96 0 0 0 0 1.062v.002a.985.985 0 0 0 .05.068l.008.01c.021.026.043.05.066.074l.011.01a.97.97 0 0 0 .204.151l-1.317 1.317-.351-.35a1.949 1.949 0 0 1-.558-1.171Zm4.423 5.034-.007-.007a.3.3 0 0 1-.079-.29l.375.376c-.1.025-.21-.001-.29-.08Zm1.658.057a.282.282 0 0 1-.398 0l-.196-.196-.8-.8a.28.28 0 0 1 0-.399.28.28 0 0 1 .395-.003l1.002 1.003a.28.28 0 0 1-.003.395Zm1.134-.655a.282.282 0 0 1-.398 0l-.237-.238-.002-.002-.996-.996-.004-.003-.104-.105a.28.28 0 0 1 0-.398.28.28 0 0 1 .398 0l1.343 1.344c.11.11.11.288 0 .398Zm.856-.934a.282.282 0 0 1-.398 0L13.82 16.83a.282.282 0 0 1 .398-.399l1.207 1.208c.11.11.11.288 0 .398Zm.818-.972a.28.28 0 0 1-.398 0l-.657-.656a.28.28 0 0 1 0-.398.28.28 0 0 1 .399 0l.656.656c.11.11.11.288 0 .398Zm.588-3.54a.351.351 0 0 0-.101.211l-.082.777a1.949 1.949 0 0 1-.48 1.086l-.085-.085a.977.977 0 0 0-.695-.288.977.977 0 0 0-.883.55.985.985 0 0 0-1.452.67l-.026-.001a.977.977 0 0 0-.696.288.977.977 0 0 0-.288.695l.002.038a.977.977 0 0 0-.5.269.977.977 0 0 0-.267.898l-.004.004h-.002l-.809.81a.303.303 0 0 1-.428 0l-.007-.007a.3.3 0 0 1-.088-.214.3.3 0 0 1 .088-.214l2.98-2.98a.351.351 0 0 0-.496-.497l-2.98 2.98-.552.552a.303.303 0 0 1-.429 0l-.007-.007a.3.3 0 0 1-.088-.214.3.3 0 0 1 .088-.215l.378-.377 3.154-3.155a.351.351 0 1 0-.496-.496l-3.155 3.154a.303.303 0 0 1-.428 0l-.007-.006a.303.303 0 0 1 0-.429l.52-.521h.001l2.223-2.223.35-.35 1.057-1.057a.351.351 0 0 0-.497-.496l-.003.003-1.403 1.403-.008.006a.266.266 0 0 1-.033.028l-.012.006a.275.275 0 0 1-.035.018l-.007.002a.269.269 0 0 1-.14.013h-.004a.265.265 0 0 1-.041-.012l-.008-.003c-.013-.005-.024-.012-.036-.018l-.01-.006a.267.267 0 0 1-.076-.075l-.004-.008a.263.263 0 0 1-.02-.039L9.8 13.99a.267.267 0 0 1 0-.192l.002-.004a.27.27 0 0 1 .02-.039l.004-.008a.264.264 0 0 1 .034-.041l2.43-2.43c.255-.255.61-.394.971-.38l.597.024a.353.353 0 0 0 .262-.102l.697-.697 2.708 2.708-.696.697Zm1.453-.934-.01-.01-.002-.001-3.275-3.275.879-.878 3.286 3.286-.878.878Z", stroke: props.color || "currentColor", strokeWidth: 0.2 })),
|
|
269
|
-
React.createElement("defs", null,
|
|
270
|
-
React.createElement("clipPath", { id: "be-contract_svg__a" },
|
|
271
|
-
React.createElement("path", { d: "M0 0h24v24H0z" })))));
|
|
272
|
-
};
|
|
273
|
-
|
|
274
|
-
var SvgBeDepartments = function (_a) {
|
|
275
|
-
var title = _a.title, titleId = _a.titleId, props = __rest(_a, ["title", "titleId"]);
|
|
276
|
-
return (React.createElement("svg", __assign({ width: props.fontSize || 24, height: props.fontSize || 24, viewBox: "0 0 24 24", fill: "currentColor", strokeWidth: props.strokeWidth || 1.5, strokeLinecap: "round", strokeLinejoin: "round", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId }, props),
|
|
277
|
-
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
278
|
-
React.createElement("g", { clipPath: "url(#be-departments_svg__a)", fill: props.color || "currentColor" },
|
|
279
|
-
React.createElement("path", { d: "M13.265 19.123c.415-.355.679-.882.679-1.47V16.266a1.937 1.937 0 0 0-1.935-1.934h-.018a1.937 1.937 0 0 0-1.934 1.935v1.388c0 .587.263 1.114.678 1.47-1.395.523-2.418 1.845-2.418 3.333v1.07c0 .194.157.351.35.351h6.666c.193 0 .35-.157.35-.351v-1.07c0-1.488-1.022-2.81-2.418-3.334Zm-2.507-2.848a1.243 1.243 0 0 1 2.483 0v.263c-.418-.176-.598-.62-.606-.643a.351.351 0 0 0-.636-.045c-.015.028-.354.608-1.24.735v-.31Zm1.298 2.61-.051-.001h-.01l-.05.002a1.234 1.234 0 0 1-1.187-1.232v-.362c.728-.079 1.21-.393 1.5-.666.201.26.519.546.984.647v.38c0 .665-.528 1.208-1.186 1.233Zm.264.724-.17.406h-.3l-.17-.406c.008 0 .015-.002.023-.003l.08-.008.067-.006.108-.004h.085c.036 0 .071.002.107.004l.067.007.08.007.023.003Zm-3.301 3.567v-.719c0-.744.318-1.457.897-2.007.31-.295.68-.523 1.075-.67l.257.614-.414 1.623a.351.351 0 0 0 .103.346l.826.756a.356.356 0 0 0 .085.057h-2.83Zm2.547-1.19.324-1.269h.22l.324 1.27-.434.397-.434-.397Zm3.416 1.19h-2.83a.348.348 0 0 0 .085-.057l.826-.756a.35.35 0 0 0 .103-.346l-.414-1.623.257-.614c.395.147.764.375 1.075.67.579.55.898 1.263.898 2.007v.72ZM4.945 19.122a1.94 1.94 0 0 0 .682-1.477v-1.37a1.946 1.946 0 0 0-1.944-1.944 1.946 1.946 0 0 0-1.943 1.944v1.37c0 .59.265 1.12.682 1.477C1.025 19.645 0 20.968 0 22.457v1.07c0 .194.157.351.351.351h1.236a.35.35 0 1 0 0-.702H.702v-.719c0-.744.319-1.457.898-2.007.31-.295.68-.523 1.074-.67l.258.614-.415 1.623a.351.351 0 0 0 .103.346l.827.756a.354.354 0 0 0 .085.057h-.776a.35.35 0 1 0 0 .702h4.26a.351.351 0 0 0 .35-.35v-1.07c0-1.49-1.024-2.813-2.421-3.336Zm-2.503-2.847c0-.685.557-1.242 1.241-1.242.685 0 1.242.557 1.242 1.242v.263c-.419-.176-.598-.62-.607-.643a.351.351 0 0 0-.635-.045c-.016.028-.355.608-1.241.735v-.31Zm0 1.37v-.353c.727-.079 1.21-.393 1.5-.666.2.26.518.546.983.647v.372c0 .667-.53 1.213-1.19 1.24H3.632a1.243 1.243 0 0 1-1.19-1.24Zm1.561 1.964-.17.406h-.299l-.17-.406.022-.003.08-.008.067-.006.111-.004h.079c.037 0 .074.002.11.004l.068.006.08.008.022.003Zm-.754 2.378.325-1.27h.22l.323 1.27-.434.397-.434-.397Zm3.416 1.19h-2.83a.346.346 0 0 0 .085-.058l.826-.756a.351.351 0 0 0 .104-.346l-.415-1.623.258-.614a3.18 3.18 0 0 1 1.074.67c.58.55.898 1.263.898 2.007v.72ZM21.578 19.122a1.94 1.94 0 0 0 .682-1.477v-1.37a1.946 1.946 0 0 0-1.944-1.944 1.946 1.946 0 0 0-1.944 1.944v1.37c0 .59.266 1.12.683 1.477-1.397.523-2.422 1.846-2.422 3.335v1.07a.35.35 0 0 0 .351.351h1.598a.35.35 0 0 0 0-.702h-1.247v-.719c0-.744.319-1.457.898-2.007a3.18 3.18 0 0 1 1.074-.67l.258.614-.415 1.623a.351.351 0 0 0 .104.346l.826.756a.348.348 0 0 0 .085.057h-.414a.35.35 0 1 0 0 .702h3.898a.35.35 0 0 0 .35-.35v-1.07c.001-1.49-1.024-2.813-2.42-3.336Zm-2.503-2.848c0-.684.557-1.24 1.241-1.241.684 0 1.241.557 1.241 1.242v.263c-.418-.176-.598-.62-.607-.643a.351.351 0 0 0-.635-.045c-.016.028-.354.608-1.24.734v-.31Zm0 1.371v-.353c.727-.079 1.21-.393 1.5-.666.2.26.518.547.983.647v.372c0 .667-.529 1.213-1.19 1.24l-.047-.001h-.01l-.046.001a1.243 1.243 0 0 1-1.19-1.24Zm1.561 1.964-.17.406h-.299l-.17-.406.022-.003.08-.008.067-.006.111-.004h.079c.037 0 .074.002.11.004l.068.006.08.008.022.003Zm-.753 2.378.324-1.27h.22l.324 1.27-.434.397-.434-.397Zm3.415 1.19h-2.83a.347.347 0 0 0 .086-.058l.826-.756a.351.351 0 0 0 .103-.346l-.415-1.623.258-.614a3.18 3.18 0 0 1 1.075.67c.578.55.897 1.263.897 2.007v.72ZM13.214 5.244c.461-.378.756-.952.756-1.593V2.18c0-1.135-.924-2.06-2.059-2.06h-.001c-1.136 0-2.06.925-2.06 2.061v.736a.35.35 0 0 0 .002.04v.693c0 .641.295 1.215.756 1.593-1.51.547-2.622 1.967-2.622 3.568V9.96a.35.35 0 0 0 .35.35h1.28a.351.351 0 0 0 0-.701h-.928v-.797c0-.805.344-1.576.97-2.171.342-.325.75-.574 1.186-.733l.288.677-.447 1.762a.35.35 0 0 0 .103.345l.886.81a.35.35 0 0 0 .474 0l.886-.81a.351.351 0 0 0 .103-.345l-.447-1.763.288-.676c.436.159.844.408 1.186.733.626.595.97 1.366.97 2.171v.797h-4.349a.35.35 0 0 0 0 .702h4.7a.351.351 0 0 0 .351-.351V8.812c0-1.601-1.112-3.021-2.622-3.568Zm-2.66-3.063c0-.748.608-1.357 1.356-1.357.749 0 1.358.61 1.358 1.358v.321c-.485-.182-.692-.694-.701-.718a.351.351 0 0 0-.637-.043c-.004.008-.374.671-1.376.802v-.363Zm1.357 6.587-.494-.452.357-1.409h.274l.357 1.409-.494.452Zm-.377-3.031.068-.01h.002a3.14 3.14 0 0 1 .145-.013l.02-.001a3.07 3.07 0 0 1 .098-.004l.044.001.044-.001c.033 0 .065.002.097.004l.021.001c.048.003.096.008.145.013h.001l.07.01-.2.468h-.356l-.2-.468Zm.433-.73-.051-.002h-.01l-.05.002a1.359 1.359 0 0 1-1.302-1.356v-.4c.803-.082 1.328-.432 1.636-.73.215.284.562.606 1.078.711v.419c0 .73-.579 1.326-1.301 1.356ZM20.317 11.906h-8.055v-.932a.35.35 0 1 0-.702 0v.932H3.683a.351.351 0 0 0-.35.35v1.233a.35.35 0 1 0 .701 0v-.881h7.526v.881a.35.35 0 1 0 .702 0v-.881h7.704v.881a.35.35 0 0 0 .702 0v-1.232a.351.351 0 0 0-.351-.351Z" })),
|
|
280
|
-
React.createElement("defs", null,
|
|
281
|
-
React.createElement("clipPath", { id: "be-departments_svg__a" },
|
|
282
|
-
React.createElement("path", { d: "M0 0h24v24H0z" })))));
|
|
283
|
-
};
|
|
284
|
-
|
|
285
|
-
var SvgBeEmployee = function (_a) {
|
|
286
|
-
var title = _a.title, titleId = _a.titleId, props = __rest(_a, ["title", "titleId"]);
|
|
287
|
-
return (React.createElement("svg", __assign({ width: props.fontSize || 24, height: props.fontSize || 24, viewBox: "0 0 24 24", fill: "currentColor", strokeWidth: props.strokeWidth || 1.5, strokeLinecap: "round", strokeLinejoin: "round", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId }, props),
|
|
288
|
-
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
289
|
-
React.createElement("path", { d: "M14.303 14.13H5.524a.352.352 0 1 0 0 .703h8.78a.352.352 0 0 0 0-.704ZM14.303 12.473H5.524a.352.352 0 1 0 0 .704h8.78a.352.352 0 1 0 0-.704ZM11.577 15.785H5.524a.352.352 0 0 0 0 .704h6.053a.352.352 0 1 0 0-.704Z", fill: props.color || "currentColor" }),
|
|
290
|
-
React.createElement("path", { d: "M21.788 3.322h-3.99V.352A.352.352 0 0 0 17.446 0H2.212a.352.352 0 0 0-.352.352v2.736a.352.352 0 1 0 .704 0V.704h14.53v11.765a.352.352 0 1 0 .704 0V4.026h3.638v16.262H18.78a.352.352 0 0 0-.352.352v2.656H6.906v-2.618h7.541l.025-.002c.007 0 .014-.002.02-.003l.014-.002.021-.005.013-.003.02-.007.012-.005.019-.009.012-.005.02-.012.01-.006a.392.392 0 0 0 .024-.018l.003-.003a.366.366 0 0 0 .027-.023l1.504-1.504 1.504-1.505a.346.346 0 0 0 .03-.035l.007-.01a.336.336 0 0 0 .025-.038v-.002a.352.352 0 0 0 .018-.04l.004-.01a.352.352 0 0 0 .018-.089v-.012l.001-.012v-3.676a.352.352 0 0 0-.704 0v3.324h-2.656a.352.352 0 0 0-.352.352v2.656H2.564V4.261a.352.352 0 1 0-.704 0v16.065c0 .194.157.352.352.352h3.99v2.97c0 .194.157.352.352.352h12.234c.01 0 .018 0 .026-.002.007 0 .014-.002.02-.003.005 0 .01 0 .014-.002l.021-.005.012-.003.02-.007.013-.005.018-.008.013-.006.019-.011.01-.007a.332.332 0 0 0 .025-.018l.003-.002a.344.344 0 0 0 .027-.024l3.008-3.008a.347.347 0 0 0 .062-.084v-.002a.348.348 0 0 0 .018-.04l.004-.01a.352.352 0 0 0 .018-.1V3.673a.351.351 0 0 0-.35-.352ZM14.79 17.67h1.807l-1.807 1.806V17.67Zm4.342 5.129v-1.807h1.807l-1.807 1.807Z", fill: props.color || "currentColor" }),
|
|
291
|
-
React.createElement("path", { d: "M13.184 2.75h-7.02a.352.352 0 0 0-.352.352v7.67c0 .194.158.352.352.352h7.02a.352.352 0 0 0 .352-.352v-7.67a.352.352 0 0 0-.352-.352Zm-5.737 7.67v-.47c0-.856.575-1.618 1.37-1.95l.178.502-.31 1.078a.352.352 0 0 0 .1.357l.528.483H7.447Zm3.084-5.161a.93.93 0 0 1-.308-.385.352.352 0 0 0-.639-.043c-.002.005-.225.386-.799.504v-.14a.874.874 0 0 1 1.746 0v.064Zm-.683.323c.154.18.377.361.683.444v.222a.873.873 0 0 1-.845.872H9.63a.873.873 0 0 1-.846-.872V6.05c.49-.068.836-.272 1.063-.467Zm-.036 2.25-.109.307h-.09l-.108-.308.02-.001a2.391 2.391 0 0 1 .102-.006l.031.001h.031a2.163 2.163 0 0 1 .103.005l.02.001Zm-.154 1.95-.237-.217.208-.722h.059l.207.722-.237.217Zm2.211.638h-1.866l.528-.483a.352.352 0 0 0 .1-.357l-.31-1.078L10.5 8c.796.333 1.37 1.095 1.37 1.95v.471Zm.963 0h-.259v-.47c0-1.137-.752-2.15-1.794-2.594.282-.285.456-.676.456-1.108V5.194c0-.87-.707-1.576-1.577-1.576s-1.576.707-1.576 1.576v1.054c0 .432.174.823.456 1.108C7.495 7.8 6.743 8.813 6.743 9.95v.471h-.227V3.454h6.316v6.966Z", fill: props.color || "currentColor" })));
|
|
292
|
-
};
|
|
293
|
-
|
|
294
|
-
var SvgBeInsurance = function (_a) {
|
|
295
|
-
var title = _a.title, titleId = _a.titleId, props = __rest(_a, ["title", "titleId"]);
|
|
296
|
-
return (React.createElement("svg", __assign({ width: props.fontSize || 24, height: props.fontSize || 24, viewBox: "0 0 24 24", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", strokeWidth: props.strokeWidth || 1.5, "aria-labelledby": titleId }, props),
|
|
297
|
-
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
298
|
-
React.createElement("g", { clipPath: "url(#be-insurance_svg__a)", fill: props.color || "currentColor" },
|
|
299
|
-
React.createElement("path", { d: "M13.358 11.253a2.208 2.208 0 0 0 .853-1.742v-1.6c0-1.218-.992-2.21-2.211-2.21-1.219 0-2.21.992-2.21 2.21v1.6c0 .707.334 1.337.852 1.742-1.657.577-2.883 2.126-2.883 3.873v1.249c0 .194.158.352.352.352h7.778a.352.352 0 0 0 .352-.352v-1.249c0-1.747-1.226-3.296-2.883-3.873Zm-2.746-3.927c.23-.54.765-.92 1.388-.92a1.508 1.508 0 0 1 1.506 1.506v.39c-.569-.189-.808-.784-.819-.812a.352.352 0 0 0-.64-.043c-.004.008-.422.758-1.553.892v-.427c0-.208.042-.406.118-.586Zm-.118 2.185v-.464c.903-.084 1.483-.483 1.815-.811.23.315.616.681 1.197.793v.482c0 .809-.641 1.47-1.442 1.505l-.06-.002h-.009c-.02 0-.04 0-.059.002a1.508 1.508 0 0 1-1.442-1.505Zm1.34 3.308h.332l.409 1.773-.575.526-.575-.526.409-1.773Zm-.253-1.068c.027-.003.054-.008.081-.01h.001c.053-.007.105-.011.158-.015.008 0 .016 0 .024-.002l.107-.004.048.002.048-.002c.035.001.07.002.106.005l.025.001a3.475 3.475 0 0 1 .159.014l.08.011-.187.364h-.463l-.187-.364Zm3.955 4.272H8.463v-.897c0-.884.379-1.73 1.066-2.384a3.766 3.766 0 0 1 1.348-.82l.304.591-.488 2.122a.352.352 0 0 0 .105.338l.964.883a.351.351 0 0 0 .476 0l.964-.883a.352.352 0 0 0 .105-.338l-.489-2.122.305-.591c.496.173.96.452 1.348.82.687.653 1.065 1.5 1.065 2.384v.897Z" }),
|
|
300
|
-
React.createElement("path", { d: "M20.28 5.285a.352.352 0 0 0-.348-.298c-3.312 0-7.707-2.616-7.75-2.642a.352.352 0 0 0-.363 0c-.045.026-4.436 2.642-7.75 2.642a.352.352 0 0 0-.349.298c-.006.043-.168 1.088-.166 2.662a.352.352 0 1 0 .704 0 19.995 19.995 0 0 1 .12-2.262c1.421-.06 3.131-.52 5.09-1.369A26.521 26.521 0 0 0 12 3.054c.38.218 1.322.737 2.532 1.262 1.958.85 3.669 1.31 5.09 1.369.1.874.322 3.594-.332 6.533a.352.352 0 1 0 .687.153c.821-3.684.324-6.95.303-7.086ZM19.434 13.112a.352.352 0 0 0-.439.236c-.574 1.909-1.47 3.52-2.66 4.788-1.16 1.233-2.618 2.157-4.335 2.746-2.663-.913-4.676-2.616-5.986-5.064-.979-1.828-1.555-4.03-1.713-6.547a.352.352 0 0 0-.703.044c.164 2.618.768 4.918 1.795 6.836 1.416 2.645 3.601 4.475 6.496 5.437a.352.352 0 0 0 .222 0c1.878-.625 3.471-1.623 4.737-2.97 1.267-1.348 2.216-3.053 2.822-5.068a.352.352 0 0 0-.236-.438Z" }),
|
|
301
|
-
React.createElement("path", { d: "M22.278 3.669a.352.352 0 0 0-.348-.298c-4.17 0-9.693-3.288-9.749-3.32a.352.352 0 0 0-.362 0c-.056.033-5.579 3.32-9.75 3.32a.352.352 0 0 0-.347.298c-.026.164-.62 4.065.313 8.541.551 2.643 1.524 4.928 2.893 6.793 1.717 2.34 4.059 4.015 6.96 4.98a.352.352 0 0 0 .223 0c2.902-.965 5.244-2.64 6.961-4.98 1.369-1.865 2.342-4.15 2.893-6.793.933-4.476.34-8.377.313-8.541Zm-1.003 8.398c-.53 2.543-1.462 4.736-2.77 6.519-1.608 2.19-3.795 3.767-6.505 4.69-2.706-.922-4.891-2.496-6.498-4.681-1.308-1.78-2.241-3.97-2.773-6.509-.769-3.67-.467-7.027-.35-8.016 1.783-.06 3.939-.634 6.416-1.71A32.98 32.98 0 0 0 12 .76c.442.255 1.644.924 3.205 1.6 2.478 1.076 4.634 1.65 6.416 1.71.117.986.419 4.33-.346 7.997Z" })),
|
|
302
|
-
React.createElement("defs", null,
|
|
303
|
-
React.createElement("clipPath", { id: "be-insurance_svg__a" },
|
|
304
|
-
React.createElement("path", { d: "M0 0h24v24H0z" })))));
|
|
305
|
-
};
|
|
306
|
-
|
|
307
|
-
var SvgBeOrganization = function (_a) {
|
|
308
|
-
var title = _a.title, titleId = _a.titleId, props = __rest(_a, ["title", "titleId"]);
|
|
309
|
-
return (React.createElement("svg", __assign({ width: props.fontSize || 24, height: props.fontSize || 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", strokeWidth: props.strokeWidth || 1.5, "aria-labelledby": titleId }, props),
|
|
310
|
-
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
311
|
-
React.createElement("g", { clipPath: "url(#be-organization_svg__a)", fill: props.color || "currentColor" },
|
|
312
|
-
React.createElement("path", { d: "M3.834 19.52a1.774 1.774 0 0 0 1.772-1.773v-.57a1.775 1.775 0 0 0-1.232-1.689v-.542h7.295v.5c-.81.181-1.387.9-1.388 1.73v.57a1.772 1.772 0 1 0 3.545 0v-.57a1.775 1.775 0 0 0-1.465-1.745v-.485h7.295v.513a1.776 1.776 0 0 0-1.334 1.717v.57a1.772 1.772 0 0 0 3.545 0v-.57a1.775 1.775 0 0 0-1.52-1.754V14.6a.346.346 0 0 0-.345-.346H12.36v-1.777l.896.896a.346.346 0 0 0 .489-.489l-1.482-1.482a.346.346 0 0 0-.49 0l-1.481 1.482a.346.346 0 1 0 .489.49l.887-.888v1.768h-7.64a.346.346 0 0 0-.347.346v.81c-.916.08-1.62.846-1.62 1.766v.57a1.774 1.774 0 0 0 1.772 1.773Zm9.3-2.344v.57a1.08 1.08 0 1 1-2.161 0v-.57a1.08 1.08 0 1 1 2.161 0Zm8.041 0v.57a1.08 1.08 0 1 1-2.161 0v-.57a1.08 1.08 0 1 1 2.161 0Zm-18.422 0a1.08 1.08 0 1 1 2.161 0v.57a1.08 1.08 0 1 1-2.161 0v-.57ZM5.554 19.843h-.36a.344.344 0 0 0-.227.085l-1.08.935-1.036-.931a.346.346 0 0 0-.231-.089h-.406a1.828 1.828 0 0 0-1.821 1.994v1.817c0 .191.155.346.346.346h6.29a.346.346 0 0 0 .345-.347v-1.816a1.828 1.828 0 0 0-1.82-1.994Zm1.13 1.943a.349.349 0 0 0-.002.035v1.487H1.085v-1.487l-.002-.035a1.136 1.136 0 0 1 1.13-1.251h.274l1.165 1.047c.13.116.326.118.458.004l1.213-1.051h.23a1.136 1.136 0 0 1 1.131 1.25ZM13.774 19.843h-.36a.344.344 0 0 0-.227.085l-1.08.935-1.036-.931a.346.346 0 0 0-.231-.089h-.407a1.827 1.827 0 0 0-1.82 1.994v1.817c0 .191.155.346.346.346h6.29a.346.346 0 0 0 .345-.347v-1.816a1.828 1.828 0 0 0-1.82-1.994Zm1.13 1.943a.337.337 0 0 0-.002.035v1.487H9.304v-1.487l-.001-.035a1.136 1.136 0 0 1 1.13-1.251h.274l1.165 1.047c.13.116.326.118.458.004l1.213-1.051h.23a1.136 1.136 0 0 1 1.131 1.25ZM21.815 19.843h-.36a.345.345 0 0 0-.227.085l-1.08.935-1.036-.931a.346.346 0 0 0-.231-.089h-.407a1.827 1.827 0 0 0-1.82 1.994v1.817c0 .191.155.346.346.346h6.29a.346.346 0 0 0 .345-.347v-1.816a1.828 1.828 0 0 0-1.82-1.994Zm1.13 1.943a.337.337 0 0 0-.001.035v1.487h-5.598v-1.487l-.002-.035a1.136 1.136 0 0 1 1.13-1.251h.274l1.166 1.047c.13.116.325.118.457.004l1.213-1.051h.231a1.136 1.136 0 0 1 1.13 1.25ZM8.062 10.898h7.904c.191 0 .346-.155.346-.345v-8.91a.346.346 0 0 0-.346-.346H15.1V.346A.346.346 0 0 0 14.754 0h-5.48a.346.346 0 0 0-.345.346v.951h-.867a.346.346 0 0 0-.346.346v8.91c0 .19.155.345.346.345Zm4.804-.691h-1.854V8.913h1.854v1.294ZM9.62.692h4.788v.605H9.62V.692ZM8.408 1.989h7.213v8.218h-2.063v-1.64a.346.346 0 0 0-.346-.345h-2.545a.346.346 0 0 0-.346.346v1.639H8.408V1.989Z" }),
|
|
313
|
-
React.createElement("path", { d: "M11.567 5.292h.895a.346.346 0 0 0 0-.692h-.895a.346.346 0 0 0 0 .692ZM11.567 7.227h.895a.346.346 0 0 0 0-.692h-.895a.346.346 0 0 0 0 .692ZM14.037 5.292h.895a.346.346 0 0 0 0-.692h-.895a.346.346 0 0 0 0 .692ZM14.037 7.227h.895a.346.346 0 0 0 0-.692h-.895a.346.346 0 0 0 0 .692ZM9.096 5.292h.895a.346.346 0 0 0 0-.692h-.895a.346.346 0 0 0 0 .692ZM10.337 6.881a.346.346 0 0 0-.346-.346h-.895a.346.346 0 0 0 0 .692h.895c.191 0 .346-.155.346-.346ZM11.567 3.316h.895a.346.346 0 0 0 0-.692h-.895a.346.346 0 0 0 0 .692ZM14.037 3.316h.895a.346.346 0 0 0 0-.692h-.895a.346.346 0 0 0 0 .692ZM9.096 3.316h.895a.346.346 0 0 0 0-.692h-.895a.346.346 0 0 0 0 .692Z" })),
|
|
314
|
-
React.createElement("defs", null,
|
|
315
|
-
React.createElement("clipPath", { id: "be-organization_svg__a" },
|
|
316
|
-
React.createElement("path", { fill: "#fff", d: "M0 0h24v24H0z" })))));
|
|
317
|
-
};
|
|
318
|
-
|
|
319
|
-
var SvgBeSalary = function (_a) {
|
|
320
|
-
var title = _a.title, titleId = _a.titleId, props = __rest(_a, ["title", "titleId"]);
|
|
321
|
-
return (React.createElement("svg", __assign({ width: props.fontSize || 24, height: props.fontSize || 24, viewBox: "0 0 24 24", fill: "currentColor", strokeWidth: props.strokeWidth || 1.5, strokeLinecap: "round", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId }, props),
|
|
322
|
-
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
323
|
-
React.createElement("g", { clipPath: "url(#be-salary_svg__a)", fill: props.color || "currentColor" },
|
|
324
|
-
React.createElement("path", { d: "M7.714 6.77c-.194 0-.433-.03-.595-.211-.057-.063-.107-.123-.155-.173-.389-.41-1.058.16-.652.69l.096.128c.065.08.179.173.344.278.16.102.339.176.537.221v.522c0 .562.879.62.879-.038.005-.055.009-.117.009-.189v-.3c.317-.074.588-.228.812-.463.224-.235.336-.548.336-.937 0-.264-.052-.486-.153-.663a.876.876 0 0 0-.376-.37 3.303 3.303 0 0 0-.493-.183 3.648 3.648 0 0 0-.492-.113.946.946 0 0 1-.377-.135.307.307 0 0 1-.153-.265c0-.525.766-.461 1.104-.175.498.42 1.055-.35.477-.784l-.066-.06a1.747 1.747 0 0 0-.619-.263v-.511c0-.58-.88-.58-.88 0v.505a1.269 1.269 0 0 0-.776.463c-.188.242-.285.51-.285.809 0 .3.07.547.21.741.14.195.308.332.507.413.199.08.399.144.597.19.198.048.368.102.507.162.14.06.208.145.208.254 0 .305-.183.457-.551.457ZM11.13 5.359h5.381a.473.473 0 1 0 0-.945H11.13a.473.473 0 1 0 0 .945ZM11.13 7.369h5.381a.473.473 0 1 0 0-.946H11.13a.473.473 0 1 0 0 .946Z" }),
|
|
325
|
-
React.createElement("path", { d: "m23.39 13.612-2.754-3.537V3.33a.474.474 0 0 0-.055-.222c-.01-.018-.057-.113-.083-.113L17.653.14A.506.506 0 0 0 17.318 0H3.762c-.724 0-1.313.59-1.313 1.317v2.62a.473.473 0 0 0 .945 0v-2.62a.37.37 0 0 1 .368-.372h13.084v1.54c0 .726.588 1.317 1.312 1.317h1.533V8.86l-.113-.145a1.346 1.346 0 0 0-1.072-.522c-.3 0-.583.096-.82.277l-2.495 1.906a1.331 1.331 0 0 0-.526 1.05c-.95-.072-1.93 0-2.885.623l-.04.026-2.408-.369a1.33 1.33 0 0 0-.523-1.143L6.314 8.658a1.336 1.336 0 0 0-.82-.278c-.423 0-.814.19-1.072.522l-1.028 1.32V7.787a.473.473 0 0 0-.945 0v3.65L.611 13.799a1.329 1.329 0 0 0-.271.995c.046.358.229.674.514.891l1.595 1.22v3.492c0 .727.589 1.318 1.313 1.318H7.49c.165.317.455.57.8.683.116.037.234.057.35.06.045.191.14.375.286.537.226.25.556.411.918.411.262 0 .54-.084.808-.28l.526.492c.27.255.612.382.95.382.342 0 .681-.13.94-.39.154-.154.273-.337.35-.53a1.214 1.214 0 0 0 1.254-.315c.18-.186.31-.432.368-.695l.051.002h.014c.351 0 .689-.13.937-.357h3.28c.724 0 1.313-.591 1.313-1.318v-2.981l.014-.01 2.495-1.907c.286-.217.469-.533.515-.89a1.333 1.333 0 0 0-.27-.997ZM18.158 2.857a.37.37 0 0 1-.367-.372v-.868l1.235 1.24h-.868Zm-3.092 9.56 3.31 4.25c-.35.63-.535.83-1.378 1.504l-2.992-2.669-.946-.864a.473.473 0 0 0-.529-.074l-1.51.75c-.411.178-.803.015-.945-.248-.193-.355.094-.841.75-1.268l1.47-.957c.796-.519 1.63-.559 2.77-.425ZM1.428 14.933a.39.39 0 0 1-.07-.554l3.81-4.897a.41.41 0 0 1 .571-.074l2.496 1.905a.394.394 0 0 1 .097.518l-.01.016-.015.023-3.812 4.896a.41.41 0 0 1-.326.157.402.402 0 0 1-.246-.082l-2.495-1.908Zm4.447 3.645v-.001l1.578-1.405c.131-.116.263-.178.38-.178.172 0 .3.13.347.252.05.132.02.248-.089.348l-.271.245-.004.004c-.002 0-.003.002-.004.003l-.252.229-1.213 1.098c-.07.064-.139.096-.203.096-.132 0-.286-.133-.351-.304-.06-.156-.032-.286.08-.386l.002-.001Zm-2.113 2.19a.37.37 0 0 1-.368-.372v-2.772c.228.16.494.244.775.244.167 0 .33-.03.481-.087l.32.438a1.283 1.283 0 0 0-.06 1.082c.201.532.677.892 1.191.912.016.075.038.15.068.225.049.12.112.23.186.33H3.762Zm3.859-.474c-.07.062-.137.092-.203.092-.14 0-.303-.133-.372-.302-.075-.187.013-.272.042-.3.02-.019.045-.042.07-.07l1.019-.922.271-.246c.126-.11.254-.169.37-.169.182 0 .319.141.369.272.049.13.02.245-.087.34l-.097.085-.002.002H9l-1.38 1.218Zm1.394 1.012-.02.018-.109.1c-.096.086-.191.11-.301.074a.458.458 0 0 1-.293-.322c-.025-.121.024-.234.148-.343l.156-.137.015-.015 1.022-.902c.346-.305.56-.14.637-.056.023.026.215.253-.019.465l-.628.569-.02.016-.007.007-.574.52-.007.006Zm1.771.44-.428.386-.006.006-.186.167c-.293.263-.473.127-.537.056-.05-.055-.144-.196.011-.345l.623-.564a.792.792 0 0 1 .143-.1c.248-.132.383.022.418.073.046.065.103.195-.038.321Zm6.246-1.862a.308.308 0 0 1-.229.231c-.195.05-.443-.06-.67-.295a1.34 1.34 0 0 0-.05-.053l-1.766-1.75a.473.473 0 0 0-.666.67l1.763 1.748.006.007a.404.404 0 0 1-.006.565.44.44 0 0 1-.313.118.407.407 0 0 1-.27-.098 1.176 1.176 0 0 0-.097-.11l-1.29-1.298a.473.473 0 1 0-.671.667l1.224 1.23a.476.476 0 0 0 .05.063l.052.053c.065.126.023.344-.103.473-.195.2-.471.021-.668-.164l-.553-.522a.473.473 0 0 0-.649.688l.423.399.002.002c.01.009.024.022.024.069.002.11-.07.259-.175.364-.152.153-.404.147-.575-.013l-.46-.43.054-.05c.461-.416.535-1.06.179-1.567a1.245 1.245 0 0 0-.417-.377c.228-.452.163-1-.207-1.412a1.3 1.3 0 0 0-.824-.425 1.37 1.37 0 0 0-1.006-1.193 1.333 1.333 0 0 0-1.31-1.426c-.354 0-.703.145-1.01.418l-1.19 1.06-.258-.354 3.56-4.571 1.614.248-.24.155c-1.323.861-1.418 1.862-1.065 2.512.28.518.84.815 1.434.815a1.812 1.812 0 0 0 .753-.166l1.23-.611.71.647.001.002.002.002 3.291 2.935c.282.252.419.53.366.744Zm2.659.512a.37.37 0 0 1-.369.372l-1.84.05c.23-.172.398-.42.469-.71.102-.42-.002-.86-.285-1.262.73-.589 1.028-.88 1.363-1.425.192.14.42.227.662.252v2.723Zm3.032-5.91a.388.388 0 0 1-.15.26l-2.497 1.907a.41.41 0 0 1-.572-.075l-3.81-4.896a.391.391 0 0 1-.08-.293.391.391 0 0 1 .151-.263l2.495-1.906a.403.403 0 0 1 .246-.082c.13 0 .248.057.325.156l3.812 4.897a.393.393 0 0 1 .08.294Z" }),
|
|
326
|
-
React.createElement("path", { d: "M2.922 6.28a.473.473 0 0 0 .472-.472v-.01a.473.473 0 0 0-.945 0v.01c0 .261.212.473.473.473Z" })),
|
|
327
|
-
React.createElement("defs", null,
|
|
328
|
-
React.createElement("clipPath", { id: "be-salary_svg__a" },
|
|
329
|
-
React.createElement("path", { d: "M0 0h24v24H0z" })))));
|
|
330
|
-
};
|
|
331
|
-
|
|
332
262
|
var SvgBellOff = function (_a) {
|
|
333
263
|
var title = _a.title, titleId = _a.titleId, props = __rest(_a, ["title", "titleId"]);
|
|
334
264
|
return (React.createElement("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: props.fontSize || 24, height: props.fontSize || 24, viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: props.strokeWidth || 1.5, strokeLinecap: "round", strokeLinejoin: "round", className: "bell-off_svg__feather bell-off_svg__feather-bell-off", "aria-labelledby": titleId }, props),
|
|
@@ -379,22 +309,6 @@ var SvgBookmark = function (_a) {
|
|
|
379
309
|
React.createElement("path", { d: "m19 21-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" })));
|
|
380
310
|
};
|
|
381
311
|
|
|
382
|
-
var SvgBoxArrowInLeft = function (_a) {
|
|
383
|
-
var title = _a.title, titleId = _a.titleId, props = __rest(_a, ["title", "titleId"]);
|
|
384
|
-
return (React.createElement("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: props.fontSize || 24, height: props.fontSize || 24, fill: "currentColor", className: "box-arrow-in-left_svg__bi box-arrow-in-left_svg__bi-box-arrow-in-left", viewBox: "0 0 16 16", strokeWidth: props.strokeWidth || 1.5, "aria-labelledby": titleId }, props),
|
|
385
|
-
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
386
|
-
React.createElement("path", { fillRule: "evenodd", d: "M10 3.5a.5.5 0 0 0-.5-.5h-8a.5.5 0 0 0-.5.5v9a.5.5 0 0 0 .5.5h8a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 1 1 0v2A1.5 1.5 0 0 1 9.5 14h-8A1.5 1.5 0 0 1 0 12.5v-9A1.5 1.5 0 0 1 1.5 2h8A1.5 1.5 0 0 1 11 3.5v2a.5.5 0 0 1-1 0v-2z" }),
|
|
387
|
-
React.createElement("path", { fillRule: "evenodd", d: "M4.146 8.354a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H14.5a.5.5 0 0 1 0 1H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3z" })));
|
|
388
|
-
};
|
|
389
|
-
|
|
390
|
-
var SvgBoxArrowInRight = function (_a) {
|
|
391
|
-
var title = _a.title, titleId = _a.titleId, props = __rest(_a, ["title", "titleId"]);
|
|
392
|
-
return (React.createElement("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: props.fontSize || 24, height: props.fontSize || 24, fill: "currentColor", className: "box-arrow-in-right_svg__bi box-arrow-in-right_svg__bi-box-arrow-in-right", viewBox: "0 0 16 16", strokeWidth: props.strokeWidth || 1.5, "aria-labelledby": titleId }, props),
|
|
393
|
-
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
394
|
-
React.createElement("path", { fillRule: "evenodd", d: "M6 3.5a.5.5 0 0 1 .5-.5h8a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5h-8a.5.5 0 0 1-.5-.5v-2a.5.5 0 0 0-1 0v2A1.5 1.5 0 0 0 6.5 14h8a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 2h-8A1.5 1.5 0 0 0 5 3.5v2a.5.5 0 0 0 1 0v-2z" }),
|
|
395
|
-
React.createElement("path", { fillRule: "evenodd", d: "M11.854 8.354a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H1.5a.5.5 0 0 0 0 1h8.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3z" })));
|
|
396
|
-
};
|
|
397
|
-
|
|
398
312
|
var SvgBox = function (_a) {
|
|
399
313
|
var title = _a.title, titleId = _a.titleId, props = __rest(_a, ["title", "titleId"]);
|
|
400
314
|
return (React.createElement("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: props.fontSize || 24, height: props.fontSize || 24, viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: props.strokeWidth || 1.5, strokeLinecap: "round", strokeLinejoin: "round", className: "box_svg__feather box_svg__feather-box", "aria-labelledby": titleId }, props),
|
|
@@ -464,20 +378,6 @@ var SvgCheck = function (_a) {
|
|
|
464
378
|
React.createElement("path", { d: "M20 6 9 17l-5-5" })));
|
|
465
379
|
};
|
|
466
380
|
|
|
467
|
-
var SvgChevronBarDown = function (_a) {
|
|
468
|
-
var title = _a.title, titleId = _a.titleId, props = __rest(_a, ["title", "titleId"]);
|
|
469
|
-
return (React.createElement("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: props.fontSize || 24, height: props.fontSize || 24, fill: "currentColor", className: "chevron-bar-down_svg__bi chevron-bar-down_svg__bi-chevron-bar-down", viewBox: "0 0 16 16", strokeWidth: props.strokeWidth || 1.5, "aria-labelledby": titleId }, props),
|
|
470
|
-
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
471
|
-
React.createElement("path", { fillRule: "evenodd", d: "M3.646 4.146a.5.5 0 0 1 .708 0L8 7.793l3.646-3.647a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 0-.708zM1 11.5a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 0 1h-13a.5.5 0 0 1-.5-.5z" })));
|
|
472
|
-
};
|
|
473
|
-
|
|
474
|
-
var SvgChevronBarUp = function (_a) {
|
|
475
|
-
var title = _a.title, titleId = _a.titleId, props = __rest(_a, ["title", "titleId"]);
|
|
476
|
-
return (React.createElement("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: props.fontSize || 24, height: props.fontSize || 24, fill: "currentColor", className: "chevron-bar-up_svg__bi chevron-bar-up_svg__bi-chevron-bar-up", viewBox: "0 0 16 16", strokeWidth: props.strokeWidth || 1.5, "aria-labelledby": titleId }, props),
|
|
477
|
-
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
478
|
-
React.createElement("path", { fillRule: "evenodd", d: "M3.646 11.854a.5.5 0 0 0 .708 0L8 8.207l3.646 3.647a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 0 0 0 .708zM2.4 5.2c0 .22.18.4.4.4h10.4a.4.4 0 0 0 0-.8H2.8a.4.4 0 0 0-.4.4z" })));
|
|
479
|
-
};
|
|
480
|
-
|
|
481
381
|
var SvgChevronDown = function (_a) {
|
|
482
382
|
var title = _a.title, titleId = _a.titleId, props = __rest(_a, ["title", "titleId"]);
|
|
483
383
|
return (React.createElement("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: props.fontSize || 24, height: props.fontSize || 24, viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: props.strokeWidth || 1.5, strokeLinecap: "round", strokeLinejoin: "round", className: "chevron-down_svg__feather chevron-down_svg__feather-chevron-down", "aria-labelledby": titleId }, props),
|
|
@@ -782,17 +682,6 @@ var SvgDelete = function (_a) {
|
|
|
782
682
|
React.createElement("path", { d: "M21 4H8l-7 8 7 8h13a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zM18 9l-6 6M12 9l6 6" })));
|
|
783
683
|
};
|
|
784
684
|
|
|
785
|
-
var SvgDepartments = function (_a) {
|
|
786
|
-
var title = _a.title, titleId = _a.titleId, props = __rest(_a, ["title", "titleId"]);
|
|
787
|
-
return (React.createElement("svg", __assign({ width: props.fontSize || 24, height: props.fontSize || 24, viewBox: "0 0 24 24", fill: "currentColor", strokeWidth: props.strokeWidth || 1.5, strokeLinecap: "round", strokeLinejoin: "round", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId }, props),
|
|
788
|
-
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
789
|
-
React.createElement("g", { clipPath: "url(#departments_svg__a)", fill: props.color || "currentColor" },
|
|
790
|
-
React.createElement("path", { d: "M13.265 19.123c.415-.355.679-.882.679-1.47V16.266a1.937 1.937 0 0 0-1.935-1.934h-.018a1.937 1.937 0 0 0-1.934 1.935v1.388c0 .587.263 1.114.678 1.47-1.395.523-2.418 1.845-2.418 3.333v1.07c0 .194.157.351.35.351h6.666c.193 0 .35-.157.35-.351v-1.07c0-1.488-1.022-2.81-2.418-3.334Zm-2.507-2.848a1.243 1.243 0 0 1 2.483 0v.263c-.418-.176-.598-.62-.606-.643a.351.351 0 0 0-.636-.045c-.015.028-.354.608-1.24.735v-.31Zm1.298 2.61-.051-.001h-.01l-.05.002a1.234 1.234 0 0 1-1.187-1.232v-.362c.728-.079 1.21-.393 1.5-.666.201.26.519.546.984.647v.38c0 .665-.528 1.208-1.186 1.233Zm.264.724-.17.406h-.3l-.17-.406c.008 0 .015-.002.023-.003l.08-.008.067-.006.108-.004h.085c.036 0 .071.002.107.004l.067.007.08.007.023.003Zm-3.301 3.567v-.719c0-.744.318-1.457.897-2.007.31-.295.68-.523 1.075-.67l.257.614-.414 1.623a.351.351 0 0 0 .103.346l.826.756a.356.356 0 0 0 .085.057h-2.83Zm2.547-1.19.324-1.269h.22l.324 1.27-.434.397-.434-.397Zm3.416 1.19h-2.83a.348.348 0 0 0 .085-.057l.826-.756a.35.35 0 0 0 .103-.346l-.414-1.623.257-.614c.395.147.764.375 1.075.67.579.55.898 1.263.898 2.007v.72ZM4.945 19.122a1.94 1.94 0 0 0 .682-1.477v-1.37a1.946 1.946 0 0 0-1.944-1.944 1.946 1.946 0 0 0-1.943 1.944v1.37c0 .59.265 1.12.682 1.477C1.025 19.645 0 20.968 0 22.457v1.07c0 .194.157.351.351.351h1.236a.35.35 0 1 0 0-.702H.702v-.719c0-.744.319-1.457.898-2.007.31-.295.68-.523 1.074-.67l.258.614-.415 1.623a.351.351 0 0 0 .103.346l.827.756a.354.354 0 0 0 .085.057h-.776a.35.35 0 1 0 0 .702h4.26a.351.351 0 0 0 .35-.35v-1.07c0-1.49-1.024-2.813-2.421-3.336Zm-2.503-2.847c0-.685.557-1.242 1.241-1.242.685 0 1.242.557 1.242 1.242v.263c-.419-.176-.598-.62-.607-.643a.351.351 0 0 0-.635-.045c-.016.028-.355.608-1.241.735v-.31Zm0 1.37v-.353c.727-.079 1.21-.393 1.5-.666.2.26.518.546.983.647v.372c0 .667-.53 1.213-1.19 1.24H3.632a1.243 1.243 0 0 1-1.19-1.24Zm1.561 1.964-.17.406h-.299l-.17-.406.022-.003.08-.008.067-.006.111-.004h.079c.037 0 .074.002.11.004l.068.006.08.008.022.003Zm-.754 2.378.325-1.27h.22l.323 1.27-.434.397-.434-.397Zm3.416 1.19h-2.83a.346.346 0 0 0 .085-.058l.826-.756a.351.351 0 0 0 .104-.346l-.415-1.623.258-.614a3.18 3.18 0 0 1 1.074.67c.58.55.898 1.263.898 2.007v.72ZM21.578 19.122a1.94 1.94 0 0 0 .682-1.477v-1.37a1.946 1.946 0 0 0-1.944-1.944 1.946 1.946 0 0 0-1.944 1.944v1.37c0 .59.266 1.12.683 1.477-1.397.523-2.422 1.846-2.422 3.335v1.07a.35.35 0 0 0 .351.351h1.598a.35.35 0 0 0 0-.702h-1.247v-.719c0-.744.319-1.457.898-2.007a3.18 3.18 0 0 1 1.074-.67l.258.614-.415 1.623a.351.351 0 0 0 .104.346l.826.756a.348.348 0 0 0 .085.057h-.414a.35.35 0 1 0 0 .702h3.898a.35.35 0 0 0 .35-.35v-1.07c.001-1.49-1.024-2.813-2.42-3.336Zm-2.503-2.848c0-.684.557-1.24 1.241-1.241.684 0 1.241.557 1.241 1.242v.263c-.418-.176-.598-.62-.607-.643a.351.351 0 0 0-.635-.045c-.016.028-.354.608-1.24.734v-.31Zm0 1.371v-.353c.727-.079 1.21-.393 1.5-.666.2.26.518.547.983.647v.372c0 .667-.529 1.213-1.19 1.24l-.047-.001h-.01l-.046.001a1.243 1.243 0 0 1-1.19-1.24Zm1.561 1.964-.17.406h-.299l-.17-.406.022-.003.08-.008.067-.006.111-.004h.079c.037 0 .074.002.11.004l.068.006.08.008.022.003Zm-.753 2.378.324-1.27h.22l.324 1.27-.434.397-.434-.397Zm3.415 1.19h-2.83a.347.347 0 0 0 .086-.058l.826-.756a.351.351 0 0 0 .103-.346l-.415-1.623.258-.614a3.18 3.18 0 0 1 1.075.67c.578.55.897 1.263.897 2.007v.72ZM13.214 5.244c.461-.378.756-.952.756-1.593V2.18c0-1.135-.924-2.06-2.059-2.06h-.001c-1.136 0-2.06.925-2.06 2.061v.736a.35.35 0 0 0 .002.04v.693c0 .641.295 1.215.756 1.593-1.51.547-2.622 1.967-2.622 3.568V9.96a.35.35 0 0 0 .35.35h1.28a.351.351 0 0 0 0-.701h-.928v-.797c0-.805.344-1.576.97-2.171.342-.325.75-.574 1.186-.733l.288.677-.447 1.762a.35.35 0 0 0 .103.345l.886.81a.35.35 0 0 0 .474 0l.886-.81a.351.351 0 0 0 .103-.345l-.447-1.763.288-.676c.436.159.844.408 1.186.733.626.595.97 1.366.97 2.171v.797h-4.349a.35.35 0 0 0 0 .702h4.7a.351.351 0 0 0 .351-.351V8.812c0-1.601-1.112-3.021-2.622-3.568Zm-2.66-3.063c0-.748.608-1.357 1.356-1.357.749 0 1.358.61 1.358 1.358v.321c-.485-.182-.692-.694-.701-.718a.351.351 0 0 0-.637-.043c-.004.008-.374.671-1.376.802v-.363Zm1.357 6.587-.494-.452.357-1.409h.274l.357 1.409-.494.452Zm-.377-3.031.068-.01h.002a3.14 3.14 0 0 1 .145-.013l.02-.001a3.07 3.07 0 0 1 .098-.004l.044.001.044-.001c.033 0 .065.002.097.004l.021.001c.048.003.096.008.145.013h.001l.07.01-.2.468h-.356l-.2-.468Zm.433-.73-.051-.002h-.01l-.05.002a1.359 1.359 0 0 1-1.302-1.356v-.4c.803-.082 1.328-.432 1.636-.73.215.284.562.606 1.078.711v.419c0 .73-.579 1.326-1.301 1.356ZM20.317 11.906h-8.055v-.932a.35.35 0 1 0-.702 0v.932H3.683a.351.351 0 0 0-.35.35v1.233a.35.35 0 1 0 .701 0v-.881h7.526v.881a.35.35 0 1 0 .702 0v-.881h7.704v.881a.35.35 0 0 0 .702 0v-1.232a.351.351 0 0 0-.351-.351Z" })),
|
|
791
|
-
React.createElement("defs", null,
|
|
792
|
-
React.createElement("clipPath", { id: "departments_svg__a" },
|
|
793
|
-
React.createElement("path", { d: "M0 0h24v24H0z" })))));
|
|
794
|
-
};
|
|
795
|
-
|
|
796
685
|
var SvgDisc = function (_a) {
|
|
797
686
|
var title = _a.title, titleId = _a.titleId, props = __rest(_a, ["title", "titleId"]);
|
|
798
687
|
return (React.createElement("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: props.fontSize || 24, height: props.fontSize || 24, viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: props.strokeWidth || 1.5, strokeLinecap: "round", strokeLinejoin: "round", className: "disc_svg__feather disc_svg__feather-disc", "aria-labelledby": titleId }, props),
|
|
@@ -885,15 +774,6 @@ var SvgEdit = function (_a) {
|
|
|
885
774
|
React.createElement("path", { d: "M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z" })));
|
|
886
775
|
};
|
|
887
776
|
|
|
888
|
-
var SvgEmploy = function (_a) {
|
|
889
|
-
var title = _a.title, titleId = _a.titleId, props = __rest(_a, ["title", "titleId"]);
|
|
890
|
-
return (React.createElement("svg", __assign({ width: props.fontSize || 24, height: props.fontSize || 24, viewBox: "0 0 24 24", fill: "currentColor", strokeWidth: props.strokeWidth || 1.5, strokeLinecap: "round", strokeLinejoin: "round", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId }, props),
|
|
891
|
-
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
892
|
-
React.createElement("path", { d: "M14.303 14.13H5.524a.352.352 0 1 0 0 .703h8.78a.352.352 0 0 0 0-.704ZM14.303 12.473H5.524a.352.352 0 1 0 0 .704h8.78a.352.352 0 1 0 0-.704ZM11.577 15.785H5.524a.352.352 0 0 0 0 .704h6.053a.352.352 0 1 0 0-.704Z", fill: props.color || "currentColor" }),
|
|
893
|
-
React.createElement("path", { d: "M21.788 3.322h-3.99V.352A.352.352 0 0 0 17.446 0H2.212a.352.352 0 0 0-.352.352v2.736a.352.352 0 1 0 .704 0V.704h14.53v11.765a.352.352 0 1 0 .704 0V4.026h3.638v16.262H18.78a.352.352 0 0 0-.352.352v2.656H6.906v-2.618h7.541l.025-.002c.007 0 .014-.002.02-.003l.014-.002.021-.005.013-.003.02-.007.012-.005.019-.009.012-.005.02-.012.01-.006a.392.392 0 0 0 .024-.018l.003-.003a.366.366 0 0 0 .027-.023l1.504-1.504 1.504-1.505a.346.346 0 0 0 .03-.035l.007-.01a.336.336 0 0 0 .025-.038v-.002a.352.352 0 0 0 .018-.04l.004-.01a.352.352 0 0 0 .018-.089v-.012l.001-.012v-3.676a.352.352 0 0 0-.704 0v3.324h-2.656a.352.352 0 0 0-.352.352v2.656H2.564V4.261a.352.352 0 1 0-.704 0v16.065c0 .194.157.352.352.352h3.99v2.97c0 .194.157.352.352.352h12.234c.01 0 .018 0 .026-.002.007 0 .014-.002.02-.003.005 0 .01 0 .014-.002l.021-.005.012-.003.02-.007.013-.005.018-.008.013-.006.019-.011.01-.007a.332.332 0 0 0 .025-.018l.003-.002a.344.344 0 0 0 .027-.024l3.008-3.008a.347.347 0 0 0 .062-.084v-.002a.348.348 0 0 0 .018-.04l.004-.01a.352.352 0 0 0 .018-.1V3.673a.351.351 0 0 0-.35-.352ZM14.79 17.67h1.807l-1.807 1.806V17.67Zm4.342 5.129v-1.807h1.807l-1.807 1.807Z", fill: props.color || "currentColor" }),
|
|
894
|
-
React.createElement("path", { d: "M13.184 2.75h-7.02a.352.352 0 0 0-.352.352v7.67c0 .194.158.352.352.352h7.02a.352.352 0 0 0 .352-.352v-7.67a.352.352 0 0 0-.352-.352Zm-5.737 7.67v-.47c0-.856.575-1.618 1.37-1.95l.178.502-.31 1.078a.352.352 0 0 0 .1.357l.528.483H7.447Zm3.084-5.161a.93.93 0 0 1-.308-.385.352.352 0 0 0-.639-.043c-.002.005-.225.386-.799.504v-.14a.874.874 0 0 1 1.746 0v.064Zm-.683.323c.154.18.377.361.683.444v.222a.873.873 0 0 1-.845.872H9.63a.873.873 0 0 1-.846-.872V6.05c.49-.068.836-.272 1.063-.467Zm-.036 2.25-.109.307h-.09l-.108-.308.02-.001a2.391 2.391 0 0 1 .102-.006l.031.001h.031a2.163 2.163 0 0 1 .103.005l.02.001Zm-.154 1.95-.237-.217.208-.722h.059l.207.722-.237.217Zm2.211.638h-1.866l.528-.483a.352.352 0 0 0 .1-.357l-.31-1.078L10.5 8c.796.333 1.37 1.095 1.37 1.95v.471Zm.963 0h-.259v-.47c0-1.137-.752-2.15-1.794-2.594.282-.285.456-.676.456-1.108V5.194c0-.87-.707-1.576-1.577-1.576s-1.576.707-1.576 1.576v1.054c0 .432.174.823.456 1.108C7.495 7.8 6.743 8.813 6.743 9.95v.471h-.227V3.454h6.316v6.966Z", fill: props.color || "currentColor" })));
|
|
895
|
-
};
|
|
896
|
-
|
|
897
777
|
var SvgExternalLink = function (_a) {
|
|
898
778
|
var title = _a.title, titleId = _a.titleId, props = __rest(_a, ["title", "titleId"]);
|
|
899
779
|
return (React.createElement("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: props.fontSize || 24, height: props.fontSize || 24, viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: props.strokeWidth || 1.5, strokeLinecap: "round", strokeLinejoin: "round", className: "external-link_svg__feather external-link_svg__feather-external-link", "aria-labelledby": titleId }, props),
|
|
@@ -1192,19 +1072,6 @@ var SvgInstagram = function (_a) {
|
|
|
1192
1072
|
React.createElement("path", { d: "M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37zM17.5 6.5h.01" })));
|
|
1193
1073
|
};
|
|
1194
1074
|
|
|
1195
|
-
var SvgInsurance = function (_a) {
|
|
1196
|
-
var title = _a.title, titleId = _a.titleId, props = __rest(_a, ["title", "titleId"]);
|
|
1197
|
-
return (React.createElement("svg", __assign({ width: props.fontSize || 24, height: props.fontSize || 24, viewBox: "0 0 24 24", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", strokeWidth: props.strokeWidth || 1.5, "aria-labelledby": titleId }, props),
|
|
1198
|
-
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
1199
|
-
React.createElement("g", { clipPath: "url(#insurance_svg__a)", fill: props.color || "currentColor" },
|
|
1200
|
-
React.createElement("path", { d: "M13.358 11.253a2.208 2.208 0 0 0 .853-1.742v-1.6c0-1.218-.992-2.21-2.211-2.21-1.219 0-2.21.992-2.21 2.21v1.6c0 .707.334 1.337.852 1.742-1.657.577-2.883 2.126-2.883 3.873v1.249c0 .194.158.352.352.352h7.778a.352.352 0 0 0 .352-.352v-1.249c0-1.747-1.226-3.296-2.883-3.873Zm-2.746-3.927c.23-.54.765-.92 1.388-.92a1.508 1.508 0 0 1 1.506 1.506v.39c-.569-.189-.808-.784-.819-.812a.352.352 0 0 0-.64-.043c-.004.008-.422.758-1.553.892v-.427c0-.208.042-.406.118-.586Zm-.118 2.185v-.464c.903-.084 1.483-.483 1.815-.811.23.315.616.681 1.197.793v.482c0 .809-.641 1.47-1.442 1.505l-.06-.002h-.009c-.02 0-.04 0-.059.002a1.508 1.508 0 0 1-1.442-1.505Zm1.34 3.308h.332l.409 1.773-.575.526-.575-.526.409-1.773Zm-.253-1.068c.027-.003.054-.008.081-.01h.001c.053-.007.105-.011.158-.015.008 0 .016 0 .024-.002l.107-.004.048.002.048-.002c.035.001.07.002.106.005l.025.001a3.475 3.475 0 0 1 .159.014l.08.011-.187.364h-.463l-.187-.364Zm3.955 4.272H8.463v-.897c0-.884.379-1.73 1.066-2.384a3.766 3.766 0 0 1 1.348-.82l.304.591-.488 2.122a.352.352 0 0 0 .105.338l.964.883a.351.351 0 0 0 .476 0l.964-.883a.352.352 0 0 0 .105-.338l-.489-2.122.305-.591c.496.173.96.452 1.348.82.687.653 1.065 1.5 1.065 2.384v.897Z" }),
|
|
1201
|
-
React.createElement("path", { d: "M20.28 5.285a.352.352 0 0 0-.348-.298c-3.312 0-7.707-2.616-7.75-2.642a.352.352 0 0 0-.363 0c-.045.026-4.436 2.642-7.75 2.642a.352.352 0 0 0-.349.298c-.006.043-.168 1.088-.166 2.662a.352.352 0 1 0 .704 0 19.995 19.995 0 0 1 .12-2.262c1.421-.06 3.131-.52 5.09-1.369A26.521 26.521 0 0 0 12 3.054c.38.218 1.322.737 2.532 1.262 1.958.85 3.669 1.31 5.09 1.369.1.874.322 3.594-.332 6.533a.352.352 0 1 0 .687.153c.821-3.684.324-6.95.303-7.086ZM19.434 13.112a.352.352 0 0 0-.439.236c-.574 1.909-1.47 3.52-2.66 4.788-1.16 1.233-2.618 2.157-4.335 2.746-2.663-.913-4.676-2.616-5.986-5.064-.979-1.828-1.555-4.03-1.713-6.547a.352.352 0 0 0-.703.044c.164 2.618.768 4.918 1.795 6.836 1.416 2.645 3.601 4.475 6.496 5.437a.352.352 0 0 0 .222 0c1.878-.625 3.471-1.623 4.737-2.97 1.267-1.348 2.216-3.053 2.822-5.068a.352.352 0 0 0-.236-.438Z" }),
|
|
1202
|
-
React.createElement("path", { d: "M22.278 3.669a.352.352 0 0 0-.348-.298c-4.17 0-9.693-3.288-9.749-3.32a.352.352 0 0 0-.362 0c-.056.033-5.579 3.32-9.75 3.32a.352.352 0 0 0-.347.298c-.026.164-.62 4.065.313 8.541.551 2.643 1.524 4.928 2.893 6.793 1.717 2.34 4.059 4.015 6.96 4.98a.352.352 0 0 0 .223 0c2.902-.965 5.244-2.64 6.961-4.98 1.369-1.865 2.342-4.15 2.893-6.793.933-4.476.34-8.377.313-8.541Zm-1.003 8.398c-.53 2.543-1.462 4.736-2.77 6.519-1.608 2.19-3.795 3.767-6.505 4.69-2.706-.922-4.891-2.496-6.498-4.681-1.308-1.78-2.241-3.97-2.773-6.509-.769-3.67-.467-7.027-.35-8.016 1.783-.06 3.939-.634 6.416-1.71A32.98 32.98 0 0 0 12 .76c.442.255 1.644.924 3.205 1.6 2.478 1.076 4.634 1.65 6.416 1.71.117.986.419 4.33-.346 7.997Z" })),
|
|
1203
|
-
React.createElement("defs", null,
|
|
1204
|
-
React.createElement("clipPath", { id: "insurance_svg__a" },
|
|
1205
|
-
React.createElement("path", { d: "M0 0h24v24H0z" })))));
|
|
1206
|
-
};
|
|
1207
|
-
|
|
1208
1075
|
var SvgItalic = function (_a) {
|
|
1209
1076
|
var title = _a.title, titleId = _a.titleId, props = __rest(_a, ["title", "titleId"]);
|
|
1210
1077
|
return (React.createElement("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: props.fontSize || 24, height: props.fontSize || 24, viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: props.strokeWidth || 1.5, strokeLinecap: "round", strokeLinejoin: "round", className: "italic_svg__feather italic_svg__feather-italic", "aria-labelledby": titleId }, props),
|
|
@@ -1302,19 +1169,6 @@ var SvgLogOut = function (_a) {
|
|
|
1302
1169
|
React.createElement("path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4M16 17l5-5-5-5M21 12H9" })));
|
|
1303
1170
|
};
|
|
1304
1171
|
|
|
1305
|
-
var SvgLuong = function (_a) {
|
|
1306
|
-
var title = _a.title, titleId = _a.titleId, props = __rest(_a, ["title", "titleId"]);
|
|
1307
|
-
return (React.createElement("svg", __assign({ width: props.fontSize || 24, height: props.fontSize || 24, viewBox: "0 0 24 24", fill: "currentColor", strokeWidth: props.strokeWidth || 1.5, strokeLinecap: "round", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": titleId }, props),
|
|
1308
|
-
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
1309
|
-
React.createElement("g", { clipPath: "url(#luong_svg__a)", fill: props.color || "currentColor" },
|
|
1310
|
-
React.createElement("path", { d: "M7.714 6.77c-.194 0-.433-.03-.595-.211-.057-.063-.107-.123-.155-.173-.389-.41-1.058.16-.652.69l.096.128c.065.08.179.173.344.278.16.102.339.176.537.221v.522c0 .562.879.62.879-.038.005-.055.009-.117.009-.189v-.3c.317-.074.588-.228.812-.463.224-.235.336-.548.336-.937 0-.264-.052-.486-.153-.663a.876.876 0 0 0-.376-.37 3.303 3.303 0 0 0-.493-.183 3.648 3.648 0 0 0-.492-.113.946.946 0 0 1-.377-.135.307.307 0 0 1-.153-.265c0-.525.766-.461 1.104-.175.498.42 1.055-.35.477-.784l-.066-.06a1.747 1.747 0 0 0-.619-.263v-.511c0-.58-.88-.58-.88 0v.505a1.269 1.269 0 0 0-.776.463c-.188.242-.285.51-.285.809 0 .3.07.547.21.741.14.195.308.332.507.413.199.08.399.144.597.19.198.048.368.102.507.162.14.06.208.145.208.254 0 .305-.183.457-.551.457ZM11.13 5.359h5.381a.473.473 0 1 0 0-.945H11.13a.473.473 0 1 0 0 .945ZM11.13 7.369h5.381a.473.473 0 1 0 0-.946H11.13a.473.473 0 1 0 0 .946Z" }),
|
|
1311
|
-
React.createElement("path", { d: "m23.39 13.612-2.754-3.537V3.33a.474.474 0 0 0-.055-.222c-.01-.018-.057-.113-.083-.113L17.653.14A.506.506 0 0 0 17.318 0H3.762c-.724 0-1.313.59-1.313 1.317v2.62a.473.473 0 0 0 .945 0v-2.62a.37.37 0 0 1 .368-.372h13.084v1.54c0 .726.588 1.317 1.312 1.317h1.533V8.86l-.113-.145a1.346 1.346 0 0 0-1.072-.522c-.3 0-.583.096-.82.277l-2.495 1.906a1.331 1.331 0 0 0-.526 1.05c-.95-.072-1.93 0-2.885.623l-.04.026-2.408-.369a1.33 1.33 0 0 0-.523-1.143L6.314 8.658a1.336 1.336 0 0 0-.82-.278c-.423 0-.814.19-1.072.522l-1.028 1.32V7.787a.473.473 0 0 0-.945 0v3.65L.611 13.799a1.329 1.329 0 0 0-.271.995c.046.358.229.674.514.891l1.595 1.22v3.492c0 .727.589 1.318 1.313 1.318H7.49c.165.317.455.57.8.683.116.037.234.057.35.06.045.191.14.375.286.537.226.25.556.411.918.411.262 0 .54-.084.808-.28l.526.492c.27.255.612.382.95.382.342 0 .681-.13.94-.39.154-.154.273-.337.35-.53a1.214 1.214 0 0 0 1.254-.315c.18-.186.31-.432.368-.695l.051.002h.014c.351 0 .689-.13.937-.357h3.28c.724 0 1.313-.591 1.313-1.318v-2.981l.014-.01 2.495-1.907c.286-.217.469-.533.515-.89a1.333 1.333 0 0 0-.27-.997ZM18.158 2.857a.37.37 0 0 1-.367-.372v-.868l1.235 1.24h-.868Zm-3.092 9.56 3.31 4.25c-.35.63-.535.83-1.378 1.504l-2.992-2.669-.946-.864a.473.473 0 0 0-.529-.074l-1.51.75c-.411.178-.803.015-.945-.248-.193-.355.094-.841.75-1.268l1.47-.957c.796-.519 1.63-.559 2.77-.425ZM1.428 14.933a.39.39 0 0 1-.07-.554l3.81-4.897a.41.41 0 0 1 .571-.074l2.496 1.905a.394.394 0 0 1 .097.518l-.01.016-.015.023-3.812 4.896a.41.41 0 0 1-.326.157.402.402 0 0 1-.246-.082l-2.495-1.908Zm4.447 3.645v-.001l1.578-1.405c.131-.116.263-.178.38-.178.172 0 .3.13.347.252.05.132.02.248-.089.348l-.271.245-.004.004c-.002 0-.003.002-.004.003l-.252.229-1.213 1.098c-.07.064-.139.096-.203.096-.132 0-.286-.133-.351-.304-.06-.156-.032-.286.08-.386l.002-.001Zm-2.113 2.19a.37.37 0 0 1-.368-.372v-2.772c.228.16.494.244.775.244.167 0 .33-.03.481-.087l.32.438a1.283 1.283 0 0 0-.06 1.082c.201.532.677.892 1.191.912.016.075.038.15.068.225.049.12.112.23.186.33H3.762Zm3.859-.474c-.07.062-.137.092-.203.092-.14 0-.303-.133-.372-.302-.075-.187.013-.272.042-.3.02-.019.045-.042.07-.07l1.019-.922.271-.246c.126-.11.254-.169.37-.169.182 0 .319.141.369.272.049.13.02.245-.087.34l-.097.085-.002.002H9l-1.38 1.218Zm1.394 1.012-.02.018-.109.1c-.096.086-.191.11-.301.074a.458.458 0 0 1-.293-.322c-.025-.121.024-.234.148-.343l.156-.137.015-.015 1.022-.902c.346-.305.56-.14.637-.056.023.026.215.253-.019.465l-.628.569-.02.016-.007.007-.574.52-.007.006Zm1.771.44-.428.386-.006.006-.186.167c-.293.263-.473.127-.537.056-.05-.055-.144-.196.011-.345l.623-.564a.792.792 0 0 1 .143-.1c.248-.132.383.022.418.073.046.065.103.195-.038.321Zm6.246-1.862a.308.308 0 0 1-.229.231c-.195.05-.443-.06-.67-.295a1.34 1.34 0 0 0-.05-.053l-1.766-1.75a.473.473 0 0 0-.666.67l1.763 1.748.006.007a.404.404 0 0 1-.006.565.44.44 0 0 1-.313.118.407.407 0 0 1-.27-.098 1.176 1.176 0 0 0-.097-.11l-1.29-1.298a.473.473 0 1 0-.671.667l1.224 1.23a.476.476 0 0 0 .05.063l.052.053c.065.126.023.344-.103.473-.195.2-.471.021-.668-.164l-.553-.522a.473.473 0 0 0-.649.688l.423.399.002.002c.01.009.024.022.024.069.002.11-.07.259-.175.364-.152.153-.404.147-.575-.013l-.46-.43.054-.05c.461-.416.535-1.06.179-1.567a1.245 1.245 0 0 0-.417-.377c.228-.452.163-1-.207-1.412a1.3 1.3 0 0 0-.824-.425 1.37 1.37 0 0 0-1.006-1.193 1.333 1.333 0 0 0-1.31-1.426c-.354 0-.703.145-1.01.418l-1.19 1.06-.258-.354 3.56-4.571 1.614.248-.24.155c-1.323.861-1.418 1.862-1.065 2.512.28.518.84.815 1.434.815a1.812 1.812 0 0 0 .753-.166l1.23-.611.71.647.001.002.002.002 3.291 2.935c.282.252.419.53.366.744Zm2.659.512a.37.37 0 0 1-.369.372l-1.84.05c.23-.172.398-.42.469-.71.102-.42-.002-.86-.285-1.262.73-.589 1.028-.88 1.363-1.425.192.14.42.227.662.252v2.723Zm3.032-5.91a.388.388 0 0 1-.15.26l-2.497 1.907a.41.41 0 0 1-.572-.075l-3.81-4.896a.391.391 0 0 1-.08-.293.391.391 0 0 1 .151-.263l2.495-1.906a.403.403 0 0 1 .246-.082c.13 0 .248.057.325.156l3.812 4.897a.393.393 0 0 1 .08.294Z" }),
|
|
1312
|
-
React.createElement("path", { d: "M2.922 6.28a.473.473 0 0 0 .472-.472v-.01a.473.473 0 0 0-.945 0v.01c0 .261.212.473.473.473Z" })),
|
|
1313
|
-
React.createElement("defs", null,
|
|
1314
|
-
React.createElement("clipPath", { id: "luong_svg__a" },
|
|
1315
|
-
React.createElement("path", { d: "M0 0h24v24H0z" })))));
|
|
1316
|
-
};
|
|
1317
|
-
|
|
1318
1172
|
var SvgMail = function (_a) {
|
|
1319
1173
|
var title = _a.title, titleId = _a.titleId, props = __rest(_a, ["title", "titleId"]);
|
|
1320
1174
|
return (React.createElement("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: props.fontSize || 24, height: props.fontSize || 24, viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: props.strokeWidth || 1.5, strokeLinecap: "round", strokeLinejoin: "round", className: "mail_svg__feather mail_svg__feather-mail", "aria-labelledby": titleId }, props),
|
|
@@ -2363,5 +2217,5 @@ var SvgZoomOut = function (_a) {
|
|
|
2363
2217
|
React.createElement("path", { d: "m21 21-4.35-4.35M8 11h6" })));
|
|
2364
2218
|
};
|
|
2365
2219
|
|
|
2366
|
-
export { SvgActivity as Activity, SvgAirplay as Airplay, SvgAlertCircle as AlertCircle, SvgAlertOctagon as AlertOctagon, SvgAlertTriangle as AlertTriangle, SvgAlignCenter as AlignCenter, SvgAlignJustify as AlignJustify, SvgAlignLeft as AlignLeft, SvgAlignRight as AlignRight, SvgAnchor as Anchor, SvgAperture as Aperture, SvgArchive as Archive, SvgArrowDown as ArrowDown, SvgArrowDownCircle as ArrowDownCircle, SvgArrowDownLeft as ArrowDownLeft, SvgArrowDownRight as ArrowDownRight, SvgArrowLeft as ArrowLeft, SvgArrowLeftCircle as ArrowLeftCircle, SvgArrowRight as ArrowRight, SvgArrowRightCircle as ArrowRightCircle, SvgArrowUp as ArrowUp, SvgArrowUpCircle as ArrowUpCircle, SvgArrowUpLeft as ArrowUpLeft, SvgArrowUpRight as ArrowUpRight, SvgAtSign as AtSign, SvgAward as Award, SvgBarChart as BarChart, SvgBarChart2 as BarChart2, SvgBattery as Battery, SvgBatteryCharging as BatteryCharging,
|
|
2220
|
+
export { SvgActivity as Activity, SvgAirplay as Airplay, SvgAlertCircle as AlertCircle, SvgAlertOctagon as AlertOctagon, SvgAlertTriangle as AlertTriangle, SvgAlignCenter as AlignCenter, SvgAlignJustify as AlignJustify, SvgAlignLeft as AlignLeft, SvgAlignRight as AlignRight, SvgAnchor as Anchor, SvgAperture as Aperture, SvgArchive as Archive, SvgArrowDown as ArrowDown, SvgArrowDownCircle as ArrowDownCircle, SvgArrowDownLeft as ArrowDownLeft, SvgArrowDownRight as ArrowDownRight, SvgArrowLeft as ArrowLeft, SvgArrowLeftCircle as ArrowLeftCircle, SvgArrowRight as ArrowRight, SvgArrowRightCircle as ArrowRightCircle, SvgArrowUp as ArrowUp, SvgArrowUpCircle as ArrowUpCircle, SvgArrowUpLeft as ArrowUpLeft, SvgArrowUpRight as ArrowUpRight, SvgAtSign as AtSign, SvgAward as Award, SvgBarChart as BarChart, SvgBarChart2 as BarChart2, SvgBattery as Battery, SvgBatteryCharging as BatteryCharging, SvgBell as Bell, SvgBellOff as BellOff, SvgBluetooth as Bluetooth, SvgBold as Bold, SvgBook as Book, SvgBookOpen as BookOpen, SvgBookmark as Bookmark, SvgBox as Box, SvgBriefcase as Briefcase, SvgCalendar as Calendar, SvgCamera as Camera, SvgCameraOff as CameraOff, SvgCast as Cast, SvgCheck as Check, SvgCheckCircle as CheckCircle, SvgCheckSquare as CheckSquare, SvgChevronDown as ChevronDown, SvgChevronLeft as ChevronLeft, SvgChevronRight as ChevronRight, SvgChevronUp as ChevronUp, SvgChevronsDown as ChevronsDown, SvgChevronsLeft as ChevronsLeft, SvgChevronsRight as ChevronsRight, SvgChevronsUp as ChevronsUp, SvgChrome as Chrome, SvgCircle as Circle, SvgClipboard as Clipboard, SvgClock as Clock, SvgCloud as Cloud, SvgCloudDrizzle as CloudDrizzle, SvgCloudLightning as CloudLightning, SvgCloudOff as CloudOff, SvgCloudRain as CloudRain, SvgCloudSnow as CloudSnow, SvgCode as Code, SvgCodepen as Codepen, SvgCodesandbox as Codesandbox, SvgCoffee as Coffee, SvgColumns as Columns, SvgCommand as Command, SvgCompass as Compass, SvgCopy as Copy, SvgCornerDownLeft as CornerDownLeft, SvgCornerDownRight as CornerDownRight, SvgCornerLeftDown as CornerLeftDown, SvgCornerLeftUp as CornerLeftUp, SvgCornerRightDown as CornerRightDown, SvgCornerRightUp as CornerRightUp, SvgCornerUpLeft as CornerUpLeft, SvgCornerUpRight as CornerUpRight, SvgCpu as Cpu, SvgCreditCard as CreditCard, SvgCrop as Crop, SvgCrosshair as Crosshair, SvgDatabase as Database, SvgDelete as Delete, SvgDisc as Disc, SvgDivide as Divide, SvgDivideCircle as DivideCircle, SvgDivideSquare as DivideSquare, SvgDollarSign as DollarSign, SvgDownload as Download, SvgDownloadCloud as DownloadCloud, SvgDribbble as Dribbble, SvgDroplet as Droplet, SvgEdit as Edit, SvgEdit2 as Edit2, SvgEdit3 as Edit3, SvgExternalLink as ExternalLink, SvgEye as Eye, SvgEyeOff as EyeOff, SvgFacebook as Facebook, SvgFastForward as FastForward, SvgFeather as Feather, SvgFigma as Figma, SvgFile as File, SvgFileMinus as FileMinus, SvgFilePlus as FilePlus, SvgFileText as FileText, SvgFilm as Film, SvgFilter as Filter, SvgFlag as Flag, SvgFolder as Folder, SvgFolderMinus as FolderMinus, SvgFolderPlus as FolderPlus, SvgFramer as Framer, SvgFrown as Frown, SvgGift as Gift, SvgGitBranch as GitBranch, SvgGitCommit as GitCommit, SvgGitMerge as GitMerge, SvgGitPullRequest as GitPullRequest, SvgGithub as Github, SvgGitlab as Gitlab, SvgGlobe as Globe, SvgGrid as Grid, SvgHardDrive as HardDrive, SvgHash as Hash, SvgHeadphones as Headphones, SvgHeart as Heart, SvgHelpCircle as HelpCircle, SvgHexagon as Hexagon, SvgHome as Home, SvgImage as Image, SvgInbox as Inbox, SvgInfo as Info, SvgInstagram as Instagram, SvgItalic as Italic, SvgKey as Key, SvgLayers as Layers, SvgLayout as Layout, SvgLifeBuoy as LifeBuoy, SvgLink as Link, SvgLink2 as Link2, SvgLinkedin as Linkedin, SvgList as List, SvgLoader as Loader, SvgLock as Lock, SvgLogIn as LogIn, SvgLogOut as LogOut, SvgMail as Mail, SvgMap as Map, SvgMapPin as MapPin, SvgMaximize as Maximize, SvgMaximize2 as Maximize2, SvgMeh as Meh, SvgMenu as Menu, SvgMessageCircle as MessageCircle, SvgMessageSquare as MessageSquare, SvgMic as Mic, SvgMicOff as MicOff, SvgMinimize as Minimize, SvgMinimize2 as Minimize2, SvgMinus as Minus, SvgMinusCircle as MinusCircle, SvgMinusSquare as MinusSquare, SvgMonitor as Monitor, SvgMoon as Moon, SvgMoreHorizontal as MoreHorizontal, SvgMoreVertical as MoreVertical, SvgMousePointer as MousePointer, SvgMove as Move, SvgMusic as Music, SvgNavigation as Navigation, SvgNavigation2 as Navigation2, SvgOctagon as Octagon, SvgPackage as Package, SvgPaperclip as Paperclip, SvgPause as Pause, SvgPauseCircle as PauseCircle, SvgPenTool as PenTool, SvgPercent as Percent, SvgPhone as Phone, SvgPhoneCall as PhoneCall, SvgPhoneForwarded as PhoneForwarded, SvgPhoneIncoming as PhoneIncoming, SvgPhoneMissed as PhoneMissed, SvgPhoneOff as PhoneOff, SvgPhoneOutgoing as PhoneOutgoing, SvgPieChart as PieChart, SvgPlay as Play, SvgPlayCircle as PlayCircle, SvgPlus as Plus, SvgPlusCircle as PlusCircle, SvgPlusSquare as PlusSquare, SvgPocket as Pocket, SvgPower as Power, SvgPrinter as Printer, SvgRadio as Radio, SvgRefreshCcw as RefreshCcw, SvgRefreshCw as RefreshCw, SvgRepeat as Repeat, SvgRewind as Rewind, SvgRotateCcw as RotateCcw, SvgRotateCw as RotateCw, SvgRss as Rss, SvgSave as Save, SvgScissors as Scissors, SvgSearch as Search, SvgSend as Send, SvgServer as Server, SvgSettings as Settings, SvgShare as Share, SvgShare2 as Share2, SvgShield as Shield, SvgShieldOff as ShieldOff, SvgShoppingBag as ShoppingBag, SvgShoppingCart as ShoppingCart, SvgShuffle as Shuffle, SvgSidebar as Sidebar, SvgSkipBack as SkipBack, SvgSkipForward as SkipForward, SvgSlack as Slack, SvgSlash as Slash, SvgSliders as Sliders, SvgSmartphone as Smartphone, SvgSmile as Smile, SvgSpeaker as Speaker, SvgSquare as Square, SvgStar as Star, SvgStopCircle as StopCircle, SvgSun as Sun, SvgSunrise as Sunrise, SvgSunset as Sunset, SvgTable as Table, SvgTablet as Tablet, SvgTag as Tag, SvgTarget as Target, SvgTerminal as Terminal, SvgThermometer as Thermometer, SvgThumbsDown as ThumbsDown, SvgThumbsUp as ThumbsUp, SvgToggleLeft as ToggleLeft, SvgToggleRight as ToggleRight, SvgTool as Tool, SvgTrash as Trash, SvgTrash2 as Trash2, SvgTrello as Trello, SvgTrendingDown as TrendingDown, SvgTrendingUp as TrendingUp, SvgTriangle as Triangle, SvgTruck as Truck, SvgTv as Tv, SvgTwitch as Twitch, SvgTwitter as Twitter, SvgType as Type, SvgUmbrella as Umbrella, SvgUnderline as Underline, SvgUnlock as Unlock, SvgUpload as Upload, SvgUploadCloud as UploadCloud, SvgUser as User, SvgUserCheck as UserCheck, SvgUserMinus as UserMinus, SvgUserPlus as UserPlus, SvgUserX as UserX, SvgUsers as Users, SvgVideo as Video, SvgVideoOff as VideoOff, SvgVoicemail as Voicemail, SvgVolume as Volume, SvgVolume1 as Volume1, SvgVolume2 as Volume2, SvgVolumeX as VolumeX, SvgWatch as Watch, SvgWifi as Wifi, SvgWifiOff as WifiOff, SvgWind as Wind, SvgX as X, SvgXCircle as XCircle, SvgXOctagon as XOctagon, SvgXSquare as XSquare, SvgYoutube as Youtube, SvgZap as Zap, SvgZapOff as ZapOff, SvgZoomIn as ZoomIn, SvgZoomOut as ZoomOut };
|
|
2367
2221
|
//# sourceMappingURL=index.esm.js.map
|
package/dist/index.esm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
package/dist/BeContract.d.ts
DELETED
package/dist/BeDepartments.d.ts
DELETED
package/dist/BeEmployee.d.ts
DELETED
package/dist/BeInsurance.d.ts
DELETED
package/dist/BeOrganization.d.ts
DELETED
package/dist/BeSalary.d.ts
DELETED
package/dist/BoxArrowInLeft.d.ts
DELETED
package/dist/ChevronBarDown.d.ts
DELETED
package/dist/ChevronBarUp.d.ts
DELETED
package/dist/Departments.d.ts
DELETED
package/dist/Employ.d.ts
DELETED
package/dist/Insurance.d.ts
DELETED
package/dist/Luong.d.ts
DELETED