@leafygreen-ui/icon 11.7.0 → 11.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +30 -0
- package/README.md +53 -5
- package/dist/createGlyphComponent.d.ts +7 -0
- package/dist/createGlyphComponent.d.ts.map +1 -1
- package/dist/createIconComponent.d.ts +5 -0
- package/dist/createIconComponent.d.ts.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types/LGGlyph.d.ts +7 -0
- package/dist/types/LGGlyph.d.ts.map +1 -0
- package/dist/types/SVGR.d.ts +7 -0
- package/dist/types/SVGR.d.ts.map +1 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/index.d.ts.map +1 -0
- package/package.json +2 -2
- package/src/Icon.spec.tsx +68 -20
- package/src/createGlyphComponent.tsx +7 -0
- package/src/createIconComponent.tsx +5 -0
- package/src/index.ts +3 -1
- package/src/types/LGGlyph.ts +8 -0
- package/src/types/SVGR.ts +8 -0
- package/src/types/index.ts +2 -0
- package/src/{svg.d.ts → types/svg.d.ts} +0 -0
- package/{typings → src/types}/svgr.d.ts +0 -0
- package/tsconfig.json +1 -1
- package/tsconfig.tsbuildinfo +257 -225
- package/dist/types.d.ts +0 -15
- package/dist/types.d.ts.map +0 -1
- package/src/types.ts +0 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @leafygreen-ui/icon
|
|
2
2
|
|
|
3
|
+
## 11.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- acd6919: Exports `createGlyphComponent` from the package. This provides a way to ensure parity between built-in icons and custom icons. By processing an icon with `createGlyphComponent`, consumers can ensure that props like `size`, `fill` and `role` behave as expected in both custom and default icons.
|
|
8
|
+
|
|
9
|
+
e.g.
|
|
10
|
+
|
|
11
|
+
```js
|
|
12
|
+
import { createGlyphComponent, Size } from '@leafygreen-ui/icon';
|
|
13
|
+
|
|
14
|
+
const myIconGlyph = createGlyphComponent('myIconName', props => (
|
|
15
|
+
<svg {...props} />
|
|
16
|
+
));
|
|
17
|
+
|
|
18
|
+
const MyIconComponent = createIconComponent({
|
|
19
|
+
myIconName: myIconGlyph,
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
return (
|
|
23
|
+
<MyIconComponent glyph="myIconName" size={Size.Large} role="presentation" />
|
|
24
|
+
);
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- Updated dependencies [acd6919]
|
|
30
|
+
- Updated dependencies [acd6919]
|
|
31
|
+
- @leafygreen-ui/lib@9.2.0
|
|
32
|
+
|
|
3
33
|
## 11.7.0
|
|
4
34
|
|
|
5
35
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -55,18 +55,22 @@ const SomeComponent = () => <Icon glyph="Plus" fill="#FF0000" />;
|
|
|
55
55
|
| `title` | `string`, `boolean`, `null` | Renders a title tag with the passed string within the SVG element for screen reader accessibility. Setting this value to `false` will entirely unset the title. <br />If title is `undefined` or `null`, a human-readable title will be generated based on the glyph's name. | |
|
|
56
56
|
| ... | `SVGR.ComponentProps` | All other props will be spread on the `svg` element | |
|
|
57
57
|
|
|
58
|
-
|
|
58
|
+
# createIconComponent
|
|
59
|
+
|
|
60
|
+
## Usage (Registering custom icon sets)
|
|
59
61
|
|
|
60
62
|
This package exposes a method used to generate a custom version of the Icon component with any specified set of icons.
|
|
61
63
|
|
|
62
64
|
```js
|
|
63
65
|
// Import the createIconComponent method from the Icon package
|
|
64
|
-
import { createIconComponent } from '@leafygreen-ui/
|
|
66
|
+
import { createGlyphComponent, createIconComponent } from '@leafygreen-ui/icon';
|
|
65
67
|
|
|
66
68
|
// Create your 'glyphs' object. For each key / value pair, the key will be the name of the icon,
|
|
67
69
|
// and the value can be any valid React component.
|
|
68
70
|
const myGlyphs = {
|
|
69
|
-
MyCustomGlyph: (
|
|
71
|
+
MyCustomGlyph: createGlyphComponent('MyCustomGlyph', props => (
|
|
72
|
+
<svg {...props} />
|
|
73
|
+
)),
|
|
70
74
|
};
|
|
71
75
|
|
|
72
76
|
// The createIconComponent function returns your custom Icon component.
|
|
@@ -83,14 +87,58 @@ const SomeComponent = () => (
|
|
|
83
87
|
We also export the default icon set for you! If you want to include our glyphs with your custom glyphs, you can do something like this:
|
|
84
88
|
|
|
85
89
|
```js
|
|
86
|
-
import {
|
|
90
|
+
import { createGlyphComponent, createIconComponent } from '@leafygreen-ui/icon';
|
|
87
91
|
|
|
88
92
|
const myGlyphs = {
|
|
89
93
|
...glyphs,
|
|
90
|
-
MyCustomGlyph: (
|
|
94
|
+
MyCustomGlyph: createGlyphComponent('MyCustomGlyph', props => (
|
|
95
|
+
<svg {...props} />
|
|
96
|
+
)),
|
|
91
97
|
};
|
|
92
98
|
|
|
93
99
|
const MyIconComponent = createIconComponent(myGlyphs);
|
|
94
100
|
```
|
|
95
101
|
|
|
96
102
|
**Note:** Glyph has a static property, `isGlyph`, that enables checking whether or not a component is a LeafyGreen glyph.
|
|
103
|
+
|
|
104
|
+
## Returns
|
|
105
|
+
|
|
106
|
+
A custom `Icon` component, that includes any custom `glyph`s
|
|
107
|
+
|
|
108
|
+
## Properties
|
|
109
|
+
|
|
110
|
+
| Prop | Type | Description | Default |
|
|
111
|
+
| ------------- | ----------------------------------- | ---------------------------------------------------------- | ------- |
|
|
112
|
+
| `GlyphObject` | `Record<string, LGGlyph.Component>` | A dictionary record of all the named icons in the icon set | |
|
|
113
|
+
|
|
114
|
+
# createGlyphComponent
|
|
115
|
+
|
|
116
|
+
Ensures a custom glyph accepts the same props and treat them the same as a built-in Leafygreen icon.
|
|
117
|
+
To ensure a custom glyph behaves similarly to built-in icons, be sure to:
|
|
118
|
+
|
|
119
|
+
- Spread `props` onto the `svg` element
|
|
120
|
+
- Ensure all fills in the `svg` are set to `currentColor`
|
|
121
|
+
- Strokes are converted to outlines (this should be done in Figma)
|
|
122
|
+
|
|
123
|
+
## Usage
|
|
124
|
+
|
|
125
|
+
```js
|
|
126
|
+
import { createGlyphComponent, Size } from '@leafygreen-ui/icon';
|
|
127
|
+
|
|
128
|
+
const MyIconGlyph = createGlyphComponent('myIconName', props => (
|
|
129
|
+
<svg {...props} />
|
|
130
|
+
));
|
|
131
|
+
|
|
132
|
+
return <MyIconGlyph size={Size.Large} role="presentation" />;
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
## Returns
|
|
136
|
+
|
|
137
|
+
A `LGGlyph.Component`
|
|
138
|
+
|
|
139
|
+
## Properties
|
|
140
|
+
|
|
141
|
+
| Prop | Type | Description | Default |
|
|
142
|
+
| ------- | ---------------- | ----------------------- | ------- |
|
|
143
|
+
| `name` | `string` | The name of the icon | |
|
|
144
|
+
| `Glyph` | `SVGR.Component` | The React SVG component | |
|
|
@@ -1,3 +1,10 @@
|
|
|
1
1
|
import { SVGR, LGGlyph } from './types';
|
|
2
|
+
/**
|
|
3
|
+
* Returns a single glyph component.
|
|
4
|
+
* Process custom glyphs to ensure consistent behavior between custom and built-in icons
|
|
5
|
+
* @param glyphName: string - the display name of the icon
|
|
6
|
+
* @param Glyph: SVGR.Component - the SVG icon component
|
|
7
|
+
* @returns LGGlyph.Component
|
|
8
|
+
*/
|
|
2
9
|
export default function createGlyphComponent(glyphName: string, Glyph: SVGR.Component): LGGlyph.Component;
|
|
3
10
|
//# sourceMappingURL=createGlyphComponent.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createGlyphComponent.d.ts","sourceRoot":"","sources":["../src/createGlyphComponent.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAIxC,MAAM,CAAC,OAAO,UAAU,oBAAoB,CAC1C,SAAS,EAAE,MAAM,EACjB,KAAK,EAAE,IAAI,CAAC,SAAS,GACpB,OAAO,CAAC,SAAS,CA0DnB"}
|
|
1
|
+
{"version":3,"file":"createGlyphComponent.d.ts","sourceRoot":"","sources":["../src/createGlyphComponent.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAIxC;;;;;;GAMG;AACH,MAAM,CAAC,OAAO,UAAU,oBAAoB,CAC1C,SAAS,EAAE,MAAM,EACjB,KAAK,EAAE,IAAI,CAAC,SAAS,GACpB,OAAO,CAAC,SAAS,CA0DnB"}
|
|
@@ -6,6 +6,11 @@ export interface IconProps extends Omit<LGGlyph.ComponentProps, 'size'> {
|
|
|
6
6
|
size?: Size | number;
|
|
7
7
|
}
|
|
8
8
|
declare type GlyphObject = Record<string, LGGlyph.Component>;
|
|
9
|
+
/**
|
|
10
|
+
* Returns a single component with a `glyph` prop to select the glyph
|
|
11
|
+
* @param glyphs The set of glyphs
|
|
12
|
+
* @returns Icon component
|
|
13
|
+
*/
|
|
9
14
|
export default function createIconComponent<G extends GlyphObject = GlyphObject>(glyphs: G): {
|
|
10
15
|
({ glyph, ...rest }: IconProps): JSX.Element;
|
|
11
16
|
displayName: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createIconComponent.d.ts","sourceRoot":"","sources":["../src/createIconComponent.tsx"],"names":[],"mappings":";AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AAGrC,MAAM,WAAW,SAAU,SAAQ,IAAI,CAAC,OAAO,CAAC,cAAc,EAAE,MAAM,CAAC;IACrE,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,IAAI,GAAG,MAAM,CAAC;CACtB;AAED,aAAK,WAAW,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,SAAS,CAAC,CAAC;AAErD,MAAM,CAAC,OAAO,UAAU,mBAAmB,CACzC,CAAC,SAAS,WAAW,GAAG,WAAW,EACnC,MAAM,EAAE,CAAC;yBACyB,SAAS;;;EAiB5C"}
|
|
1
|
+
{"version":3,"file":"createIconComponent.d.ts","sourceRoot":"","sources":["../src/createIconComponent.tsx"],"names":[],"mappings":";AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AAGrC,MAAM,WAAW,SAAU,SAAQ,IAAI,CAAC,OAAO,CAAC,cAAc,EAAE,MAAM,CAAC;IACrE,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,IAAI,GAAG,MAAM,CAAC;CACtB;AAED,aAAK,WAAW,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,SAAS,CAAC,CAAC;AAErD;;;;GAIG;AACH,MAAM,CAAC,OAAO,UAAU,mBAAmB,CACzC,CAAC,SAAS,WAAW,GAAG,WAAW,EACnC,MAAM,EAAE,CAAC;yBACyB,SAAS;;;EAiB5C"}
|
package/dist/esm/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{createElement as r}from"react";import t from"prop-types";import{jsx as n}from"@emotion/react";import{css as e,cx as a}from"@leafygreen-ui/emotion";function l(r){return(l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(r){return typeof r}:function(r){return r&&"function"==typeof Symbol&&r.constructor===Symbol&&r!==Symbol.prototype?"symbol":typeof r})(r)}function o(r,t,n){return t in r?Object.defineProperty(r,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):r[t]=n,r}function i(){return(i=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}function h(r,t){if(null==r)return{};var n,e,a=function(r,t){if(null==r)return{};var n,e,a={},l=Object.keys(r);for(e=0;e<l.length;e++)n=l[e],t.indexOf(n)>=0||(a[n]=r[n]);return a}(r,t);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(r);for(e=0;e<l.length;e++)n=l[e],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(r,n)&&(a[n]=r[n])}return a}var v={Small:"small",Default:"default",Large:"large",XLarge:"xlarge"},c={small:14,default:16,large:20,xlarge:24};var u,p=["glyph"];function f(r){var e=function(t){var e=t.glyph,a=h(t,p),l=r[e];return n(l,a)};return e.displayName="Icon",e.propTypes={glyph:t.oneOf(Object.keys(r)).isRequired,size:t.oneOfType([t.oneOf(Object.values(v)),t.number])},e}var s=["className","size","fill","title","aria-labelledby","aria-label","role"];function w(r,l){function p(t){var p,f,w,g=t.className,d=t.size,y=void 0===d?v.Default:d,O=t.fill,b=t.title,z=t["aria-labelledby"],j=t["aria-label"],x=t.role,M=void 0===x?"img":x,C=h(t,s),m=e(u||(f=["\n color: ",";\n "],w||(w=f.slice(0)),u=Object.freeze(Object.defineProperties(f,{raw:{value:Object.freeze(w)}}))),O),V="number"==typeof y?y:c[y];return"img"!==M&&"presentation"!==M&&console.warn("Please provide a valid role to this component. Valid options are 'img' and 'presentation'. If you'd like the Icon to be accessible to screen readers please use 'img', otherwise set the role to 'presentation'."),n(l,i({className:a(o({},m,null!=O),g),height:V,width:V,role:M},function(r,t,n){var e,a,l=n["aria-label"],i=n["aria-labelledby"],h=n.title;switch(r){case"img":return l||i||h?(o(e={},"aria-labelledby",i),o(e,"aria-label",l),o(e,"title",h),e):{"aria-label":(a=t,"".concat(a.replace(/([a-z])([A-Z])/g,"$1 $2")," Icon"))};case"presentation":return{"aria-hidden":!0,alt:""}}}(M,r,(o(p={title:b},"aria-label",j),o(p,"aria-labelledby",z),p)),C))}return p.displayName=r,p.isGlyph=!0,p.propTypes={fill:t.string,size:t.oneOfType([t.oneOf(Object.values(v)),t.number]),className:t.string},p}function g(){return(g=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var d=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 13V7h4.5A1.5 1.5 0 007 5.5V1h2a2 2 0 012 2v4.515a2.5 2.5 0 00-2.612 1.602l-1.06 2.808A2.501 2.501 0 005.59 15H3a2 2 0 01-2-2zM4.914 1h.92v3.833a1 1 0 01-1 1H1v-.919a1 1 0 01.293-.707L2.5 3l1.707-1.707A1 1 0 014.914 1zM10.8 9.003a1 1 0 01.904.784l.61 2.792.508-.714a1 1 0 01.814-.42H15a1 1 0 010 2h-.848l-1.519 2.135a1 1 0 01-1.792-.367l-.371-1.701-.444 1.175a1 1 0 01-.935.646H8a1 1 0 110-2h.4l1.392-3.686a1 1 0 011.008-.644z",fill:"currentColor"});function y(){return(y=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var O=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 7v6a2 2 0 002 2h5.968a2.25 2.25 0 01.794-4.238A2.251 2.251 0 0111 8.984V3a2 2 0 00-2-2H7v4.5A1.5 1.5 0 015.5 7H1zm8 6a1 1 0 001 1h1v1a1 1 0 102 0v-1h1a1 1 0 100-2h-1v-1a1 1 0 10-2 0v1h-1a1 1 0 00-1 1zM5.833 1h-.919a1 1 0 00-.707.293L2.5 3 1.293 4.207A1 1 0 001 4.914v.92h3.833a1 1 0 001-1V1z",fill:"currentColor"});function b(){return(b=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var z=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 3H3v4h4V3zm0 6H3v4h4V9zm2-6h4v4H9V3zm4 6H9v4h4V9z",fill:"currentColor"});function j(){return(j=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var x=r("path",{d:"M2.5 1a.5.5 0 00-.5.5v13a.5.5 0 00.5.5h4a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5H4V3h2.5a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5h-4zM13.5 1a.5.5 0 01.5.5v13a.5.5 0 01-.5.5h-4a.5.5 0 01-.5-.5v-1a.5.5 0 01.5-.5H12V3H9.5a.5.5 0 01-.5-.5v-1a.5.5 0 01.5-.5h4z",fill:"currentColor"});function M(){return(M=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var C=r("path",{d:"M9.168 3v6.944l1.535-1.535a1 1 0 011.414 0l.239.24a1 1 0 010 1.414l-3.383 3.382c-.008.01-.017.018-.026.027l-.239.24a1 1 0 01-1.414 0L3.643 10.06a1 1 0 010-1.414l.239-.239a1 1 0 011.414 0L6.83 9.941V3a1 1 0 011-1h.338a1 1 0 011 1z",fill:"currentColor"});function m(){return(m=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var V=r("path",{d:"M13 6.832H6.056L7.59 5.297a1 1 0 000-1.414l-.24-.239a1 1 0 00-1.414 0L2.555 7.027c-.01.008-.018.017-.027.026l-.24.239a1 1 0 000 1.414l3.652 3.651a1 1 0 001.414 0l.239-.239a1 1 0 000-1.414L6.059 9.17H13a1 1 0 001-1v-.338a1 1 0 00-1-1z",fill:"currentColor"});function H(){return(H=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var P=r("path",{d:"M3 6.832h6.944L8.41 5.297a1 1 0 010-1.414l.24-.239a1 1 0 011.414 0l3.382 3.383c.01.008.018.017.027.026l.24.239a1 1 0 010 1.414l-3.652 3.651a1 1 0 01-1.414 0l-.239-.239a1 1 0 010-1.414L9.941 9.17H3a1 1 0 01-1-1v-.338a1 1 0 011-1z",fill:"currentColor"});function R(){return(R=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var B=r("path",{d:"M9.168 13V6.056l1.535 1.535a1 1 0 001.414 0l.239-.24a1 1 0 000-1.414L8.973 2.555a1.023 1.023 0 00-.026-.027l-.239-.24a1 1 0 00-1.414 0L3.643 5.94a1 1 0 000 1.414l.239.239a1 1 0 001.414 0L6.83 6.059V13a1 1 0 001 1h.338a1 1 0 001-1z",fill:"currentColor"});function L(){return(L=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var A=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.953 1.8c0-.28 0-.42.054-.527a.5.5 0 01.219-.218C6.333 1 6.473 1 6.753 1h2.4c.28 0 .42 0 .527.054a.5.5 0 01.218.219c.055.107.055.247.055.527v.4c0 .28 0 .42-.055.527a.5.5 0 01-.218.219C9.573 3 9.433 3 9.153 3h-2.4c-.28 0-.42 0-.527-.054a.5.5 0 01-.219-.219c-.054-.107-.054-.247-.054-.527v-.4zm.056 2.47c-.056.108-.056.25-.056.535V6l-3.007 5.412c-.663 1.193-.994 1.79-.932 2.277a1.5 1.5 0 00.6 1.02C3.01 15 3.693 15 5.057 15h5.791c1.365 0 2.047 0 2.444-.291a1.5 1.5 0 00.6-1.02c.062-.488-.27-1.084-.932-2.277L9.953 6V4.805c0-.285 0-.427-.056-.535a.5.5 0 00-.214-.214C9.575 4 9.433 4 9.148 4h-2.39c-.285 0-.427 0-.536.056a.5.5 0 00-.213.214zM9.333 9l-3.03.5-1.287 2.31c-.218.392-.327.588-.309.748a.5.5 0 00.205.348c.13.094.355.094.802.094h4.48c.447 0 .67 0 .801-.094a.5.5 0 00.205-.348c.019-.16-.09-.355-.307-.746L9.333 9z",fill:"currentColor"});function S(){return(S=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var k=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.625 6.138a4.656 4.656 0 00-3.268-3.925C9.228 1.52 8.67 1 8 1c-.67 0-1.228.52-1.357 1.213a4.656 4.656 0 00-3.268 3.925l-.452 3.963h.026a.95.95 0 000 1.899h10.102a.95.95 0 000-1.899h.026l-.452-3.963zM8 15a2 2 0 01-2-2h4a2 2 0 01-2 2z",fill:"currentColor"});function D(){return(D=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var U=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 2a1 1 0 011-1h5a1 1 0 011 1v13H6v-2H4v2H1v-4h4.5a.5.5 0 000-1H1V8h4.5a.5.5 0 000-1H1V5h4.5a.5.5 0 000-1H1V2zm8 9h4.5a.5.5 0 000-1H9V8h4.5a.5.5 0 000-1H9V5a1 1 0 011-1h5a1 1 0 011 1v10h-2v-2h-2v2H9v-4z",fill:"currentColor"});function E(){return(E=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var N=r("path",{d:"M12.331 8.5a5 5 0 10-8.612.086L5.408 11.5a1 1 0 00.866.499H6.5V6a1.5 1.5 0 113 0v6h.224a1 1 0 00.863-.496L12.34 8.5h-.009z",fill:"currentColor"}),W=r("path",{d:"M7.5 6v6h1V6a.5.5 0 00-1 0zM10 14v-1H6v1a1 1 0 001 1h2a1 1 0 001-1z",fill:"currentColor"});function F(){return(F=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var I=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5 2a1 1 0 012 0v1a1 1 0 01-2 0V2zm5 1H8a2 2 0 11-4 0 2 2 0 00-2 2v7a2 2 0 002 2h10a2 2 0 002-2V5a2 2 0 00-2-2 2 2 0 11-4 0zm1 0a1 1 0 102 0V2a1 1 0 10-2 0v1zm2 4h-3v3h3V7z",fill:"currentColor"});function T(){return(T=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var G=r("path",{d:"M8.679 10.796a.554.554 0 01-.858 0L4.64 6.976C4.32 6.594 4.582 6 5.069 6h6.362c.487 0 .748.594.43.976l-3.182 3.82z",fill:"currentColor"});function _(){return(_=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var X=r("path",{d:"M5.204 8.679a.553.553 0 010-.858l3.82-3.181c.382-.319.976-.058.976.429v6.362c0 .487-.594.748-.976.43l-3.82-3.182z",fill:"currentColor"});function $(){return($=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var q=r("path",{d:"M10.796 7.321a.554.554 0 010 .858l-3.82 3.181c-.382.319-.976.058-.976-.429V4.57c0-.487.594-.748.976-.43l3.82 3.182z",fill:"currentColor"});function K(){return(K=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Q=r("path",{d:"M7.321 5.204a.553.553 0 01.858 0l3.181 3.82c.319.382.058.976-.429.976H4.57c-.487 0-.748-.594-.43-.976l3.182-3.82z",fill:"currentColor"});function Z(){return(Z=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var J=r("path",{d:"M11.5 13a1 1 0 001 1h1a1 1 0 001-1V3a1 1 0 00-1-1h-1a1 1 0 00-1 1v10zM7.5 14a1 1 0 01-1-1V6a1 1 0 011-1h1a1 1 0 011 1v7a1 1 0 01-1 1h-1zM2.5 14a1 1 0 01-1-1V9a1 1 0 011-1h1a1 1 0 011 1v4a1 1 0 01-1 1h-1z",fill:"currentColor"});function Y(){return(Y=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var rr=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6.306 9.05l5.455-5.455a1 1 0 011.414 0l.707.707a1 1 0 010 1.414l-7.067 7.068a1 1 0 01-1.5-.098l-3.049-3.97a1 1 0 01.184-1.402l.595-.457a1.25 1.25 0 011.753.23L6.306 9.05z",fill:"currentColor"});function tr(){return(tr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var nr=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 15A7 7 0 108 1a7 7 0 000 14zm2.448-10.104a.997.997 0 111.508 1.306l-4.572 5.28a1 1 0 01-1.64-.07l-1.82-2.868a1 1 0 111.69-1.07l1.1 1.734 3.734-4.312z",fill:"currentColor"});function er(){return(er=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var ar=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.636 5.364a1 1 0 000 1.414l4.95 4.95.707.707a1 1 0 001.414 0l.707-.707 4.95-4.95a1 1 0 000-1.414l-.707-.707a1 1 0 00-1.414 0L8 8.899 3.757 4.657a1 1 0 00-1.414 0l-.707.707z",fill:"currentColor"});function lr(){return(lr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var or=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.778 1.636a1 1 0 00-1.414 0l-4.95 4.95-.707.707a1 1 0 000 1.414l.707.707 4.95 4.95a1 1 0 001.414 0l.707-.707a1 1 0 000-1.414L7.243 8l4.242-4.243a1 1 0 000-1.414l-.707-.707z",fill:"currentColor"});function ir(){return(ir=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var hr=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.364 14.364a1 1 0 001.414 0l4.95-4.95.707-.707a1 1 0 000-1.414l-.707-.707-4.95-4.95a1 1 0 00-1.414 0l-.707.707a1 1 0 000 1.414L8.899 8l-4.242 4.243a1 1 0 000 1.414l.707.707z",fill:"currentColor"});function vr(){return(vr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var cr=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14.364 10.778a1 1 0 000-1.414l-4.95-4.95-.707-.707a1 1 0 00-1.414 0l-.707.707-4.95 4.95a1 1 0 000 1.414l.707.707a1 1 0 001.414 0L8 7.243l4.243 4.242a1 1 0 001.414 0l.707-.707z",fill:"currentColor"});function ur(){return(ur=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var pr=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 14A6 6 0 108 2a6 6 0 000 12zm-.75-9.25a.75.75 0 011.5 0v3.16l1.744 1.526a.75.75 0 01-.988 1.128L7.511 8.818a.761.761 0 01-.19-.25.747.747 0 01-.071-.318v-3.5z",fill:"currentColor"});function fr(){return(fr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var sr=r("path",{d:"M13 8a5 5 0 01-7.304 4.438c-.348-.18-.787-.13-1.038.172l-.33.398c-.276.33-.22.828.152 1.044a7 7 0 10-1.452-10.98L1.97 2.146a.584.584 0 00-.964.521l.455 3.252c.04.287.285.51.576.511H5.32a.58.58 0 00.387-1.018l-1.168-1.02A5 5 0 0113 8z",fill:"currentColor"}),wr=r("path",{d:"M7.25 5.25a.75.75 0 011.5 0v2.668l1.68 1.524a.75.75 0 11-.988 1.129L7.507 8.815a.758.758 0 01-.257-.565v-3z",fill:"currentColor"});function gr(){return(gr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var dr=r("path",{d:"M5.5 12a2 2 0 002 2h5a2 2 0 002-2V8a2 2 0 00-2-2h-5a2 2 0 00-2 2v4z",fill:"currentColor"}),yr=r("path",{d:"M4.25 10H3.5a2 2 0 01-2-2V4a2 2 0 012-2h5a2 2 0 012 2v.75h-2V4h-5v4h.75v2z",fill:"currentColor"});function Or(){return(Or=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var br=r("path",{d:"M12.571 8.143c0 1.775-.899 3.34-2.267 4.264l-.014.01a5.12 5.12 0 01-2.861.869H2.857a2.857 2.857 0 01-.545-5.663 5.144 5.144 0 0110.26.52zM13.821 8.143a6.38 6.38 0 01-2.358 4.96 3.429 3.429 0 102.17-6.506c.123.494.188 1.013.188 1.546z",fill:"currentColor"});function zr(){return(zr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var jr=r("path",{d:"M6.11 13.262a.5.5 0 00.395.586l.737.143a.5.5 0 00.585-.396L9.926 2.738a.5.5 0 00-.396-.586l-.737-.143a.5.5 0 00-.585.396L6.109 13.262zM1.36 7.246L3.976 5.11a.507.507 0 01.704.063l.64.752a.483.483 0 01-.064.69L3.562 7.998 5.256 9.38c.212.173.24.482.064.69l-.64.752a.507.507 0 01-.704.062L1.36 8.75A.971.971 0 011 7.998c0-.29.132-.566.36-.752zM14.636 7.246L12.02 5.11a.507.507 0 00-.704.063l-.64.752a.483.483 0 00.064.69l1.694 1.382L10.74 9.38a.483.483 0 00-.064.69l.64.752a.507.507 0 00.704.062l2.616-2.134a.971.971 0 00.36-.752.971.971 0 00-.36-.752z",fill:"currentColor"});function xr(){return(xr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Mr=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.867 8.898a4.048 4.048 0 00.687-4.8l1.275-1.275a.584.584 0 000-.826l-.826-.826a.584.584 0 00-.826 0l-1.29 1.29a4.048 4.048 0 00-4.734.722L5.277 5.058a.323.323 0 00-.041.035L3.182 7.148a4.048 4.048 0 00-.72 4.738l-1.29 1.29a.584.584 0 000 .827l.825.826a.584.584 0 00.826 0l1.278-1.278a4.048 4.048 0 004.795-.689l1.876-1.875a.324.324 0 00.041-.035l2.054-2.054zM6.561 6.776L4.685 8.65a1.916 1.916 0 000 2.707c.747.746 1.961.747 2.707 0l2.055-2.054a.321.321 0 01.04-.035l1.877-1.875a1.916 1.916 0 000-2.707 1.916 1.916 0 00-2.707 0L6.602 6.74a.32.32 0 01-.04.035z",fill:"currentColor"});function Cr(){return(Cr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var mr=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 5.714v4.572C1 11.233 1.768 12 2.714 12H5.75V7.11c0-.566.227-1.108.63-1.504l2.294-2.252c.1-.099.21-.186.326-.262v-.378C9 1.768 8.232 1 7.286 1H5.8v3.429c0 .71-.576 1.285-1.286 1.285H1zm8-.928L7.257 6.498A.857.857 0 007 7.11v.688h3.01a.857.857 0 00.857-.858V4h-.717a.857.857 0 00-.6.246l-.55.54zM4.867 1H4.15a.857.857 0 00-.601.246L1.257 3.498A.857.857 0 001 4.11v.688h3.01a.857.857 0 00.857-.858V1zM7 12V8.714H10.514c.71 0 1.286-.575 1.286-1.285V4h1.486C14.233 4 15 4.768 15 5.714v7.572c0 .947-.768 1.714-1.714 1.714H8.714A1.714 1.714 0 017 13.286V12z",fill:"currentColor"});function Vr(){return(Vr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Hr=r("path",{d:"M3 3a2 2 0 00-2 2h14a2 2 0 00-2-2H3zM15 7H1v4a2 2 0 002 2h10a2 2 0 002-2V7z",fill:"currentColor"});function Pr(){return(Pr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Rr=r("path",{d:"M3 3.544a2.5 2.5 0 012.5-2.5h1a.5.5 0 01.5.5v1.105a.353.353 0 01-.353.353h-.79A.858.858 0 005 3.86v2.802a1.5 1.5 0 01-.816 1.335A1.5 1.5 0 015 9.332v2.803c0 .473.384.857.858.857h.789c.195 0 .353.158.353.353v1.105a.5.5 0 01-.5.5h-1a2.5 2.5 0 01-2.5-2.5v-1.956a1.5 1.5 0 00-1.5-1.5.5.5 0 01-.5-.5v-1a.5.5 0 01.5-.5 1.5 1.5 0 001.5-1.5v-1.95zM13 12.45a2.5 2.5 0 01-2.5 2.5h-1a.5.5 0 01-.5-.5v-1.105c0-.195.158-.353.353-.353h.79a.858.858 0 00.857-.858V9.332a1.5 1.5 0 01.816-1.335A1.5 1.5 0 0111 6.662V3.859a.858.858 0 00-.858-.857h-.789A.353.353 0 019 2.65V1.544a.5.5 0 01.5-.5h1a2.5 2.5 0 012.5 2.5V5.5A1.5 1.5 0 0014.5 7a.5.5 0 01.5.5v1a.5.5 0 01-.5.5 1.5 1.5 0 00-1.5 1.5v1.95z",fill:"currentColor"});function Br(){return(Br=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Lr=r("path",{d:"M14 4.111c0 .098 0 .193-.002.286L14 4.5v.25c0 .328-.148.642-.472.95-.33.314-.818.598-1.424.834-1.211.473-2.772.716-4.104.716-1.332 0-2.893-.243-4.104-.716-.606-.236-1.094-.52-1.424-.834C2.148 5.392 2 5.078 2 4.75V4.5c0-.039 0-.077.003-.115C2 4.295 2 4.205 2 4.11 2 2 5.041 1 8 1s6 1 6 3.111z",fill:"currentColor"}),Ar=r("path",{d:"M2 6.615V8.75c0 .328.148.642.472.95.33.315.818.598 1.424.834 1.211.473 2.772.716 4.104.716 1.332 0 2.893-.243 4.104-.716.606-.237 1.094-.52 1.424-.834.324-.308.472-.622.472-.95V6.615c-.428.347-.96.627-1.533.85-1.349.528-3.037.785-4.467.785-1.43 0-3.118-.257-4.467-.784-.573-.224-1.105-.504-1.533-.85z",fill:"currentColor"}),Sr=r("path",{d:"M12.467 11.466c.573-.224 1.105-.504 1.533-.85v.884c0 .038 0 .076-.003.114.002.09.003.182.003.275C14 14 10.959 15 8 15s-6-1-6-3.111c0-.097 0-.193.002-.287A2.546 2.546 0 012 11.5v-.885c.428.347.96.627 1.533.85 1.349.528 3.037.785 4.467.785 1.43 0 3.118-.257 4.467-.784z",fill:"currentColor"});function kr(){return(kr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Dr=r("path",{d:"M6 2.75A.75.75 0 016.75 2h2.5a.75.75 0 01.75.75v1.5a.75.75 0 01-.75.75H8.5v2h4.75a.75.75 0 01.75.75V10h.25a.75.75 0 01.75.75v1.5a.75.75 0 01-.75.75h-2a.75.75 0 01-.75-.75v-1.5a.75.75 0 01.75-.75H13V8H8.5v2H9a.75.75 0 01.75.75v1.5A.75.75 0 019 13H7a.75.75 0 01-.75-.75v-1.5A.75.75 0 017 10h.5V8H3v2h.75a.75.75 0 01.75.75v1.5a.75.75 0 01-.75.75h-2a.75.75 0 01-.75-.75v-1.5a.75.75 0 01.75-.75H2V7.75A.75.75 0 012.75 7H7.5V5h-.75A.75.75 0 016 4.25v-1.5z",fill:"currentColor"});function Ur(){return(Ur=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Er=r("path",{d:"M7.093 3.671a.317.317 0 010-.448L8.14 2.175a4.024 4.024 0 015.685 0 4.024 4.024 0 010 5.685l-1.048 1.047a.317.317 0 01-.448 0L11.28 7.86a.317.317 0 010-.449l1.048-1.047a1.906 1.906 0 000-2.693 1.906 1.906 0 00-2.693 0L8.59 4.718a.317.317 0 01-.449 0L7.093 3.671zM1.293 1.293a1.001 1.001 0 011.416 0l11.998 11.998a1.001 1.001 0 01-1.416 1.416l-3.159-3.16-2.272 2.277a4.024 4.024 0 01-5.685 0 4.024 4.024 0 010-5.684l2.273-2.277L1.293 2.71a1.001 1.001 0 010-1.416zm4.65 6.066L3.672 9.636a1.906 1.906 0 000 2.693c.743.742 1.95.742 2.693 0l2.272-2.277-2.692-2.693z",fill:"currentColor"});function Nr(){return(Nr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Wr=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.524 2.575v5.557h1.712c.706 0 1.033.783.5 1.196l-3.237 2.506a.832.832 0 01-.998 0L4.265 9.328c-.534-.413-.207-1.196.499-1.196h1.611V2.575a1.575 1.575 0 013.15 0zM2.5 11h1.8l2.405 1.862a2.132 2.132 0 002.59 0L11.7 11h1.8a1.5 1.5 0 010 3h-11a1.5 1.5 0 010-3z",fill:"currentColor"});function Fr(){return(Fr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Ir=r("g",{clipPath:"url(#Edit_svg__clip0)"},r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.922 1.681a.963.963 0 011.362 0l1.363 1.363a.963.963 0 010 1.362L13.284 5.77 10.56 3.044 9.538 4.066l2.725 2.725-7.154 7.153-3.746 1.022 1.021-3.747 9.538-9.538z",fill:"currentColor"})),Tr=r("defs",null,r("clipPath",{id:"Edit_svg__clip0"},r("path",{fill:"currentColor",d:"M0 0h16v16H0z"})));function Gr(){return(Gr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var _r=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.75 6a1.75 1.75 0 110 3.5 1.75 1.75 0 010-3.5zm5 0a1.75 1.75 0 110 3.5 1.75 1.75 0 010-3.5zm6.75 1.75a1.75 1.75 0 10-3.5 0 1.75 1.75 0 003.5 0z",fill:"currentColor"});function Xr(){return(Xr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var $r=r("path",{d:"M14.623 5.186a.278.278 0 000-.385l-2.805-2.915a.277.277 0 00-.477.192v1.424A6.5 6.5 0 005 10v.1a1.5 1.5 0 003 0V10a3.5 3.5 0 013.34-3.496v1.405c0 .25.305.373.478.193l2.805-2.916z",fill:"currentColor"}),qr=r("path",{d:"M6.5 3.879a.75.75 0 00-.75-.75H4a2 2 0 00-2 2v6.864a2 2 0 002 2h6.864a2 2 0 002-2V10.05a.75.75 0 00-1.5 0v1.943a.5.5 0 01-.5.5H4a.5.5 0 01-.5-.5V5.129a.5.5 0 01.5-.5h1.75a.75.75 0 00.75-.75z",fill:"currentColor"});function Kr(){return(Kr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Qr=r("path",{d:"M7.538 1.11a.5.5 0 01.924 0l1.537 3.696a.5.5 0 00.421.306l3.99.32a.5.5 0 01.285.878l-3.04 2.604a.5.5 0 00-.16.496l.928 3.893a.5.5 0 01-.747.542L8.261 11.76a.5.5 0 00-.522 0l-3.415 2.086a.5.5 0 01-.747-.542l.928-3.893a.5.5 0 00-.16-.496L1.304 6.31a.5.5 0 01.285-.878l3.99-.32A.5.5 0 006 4.806L7.538 1.11z",fill:"currentColor"});function Zr(){return(Zr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Jr=r("path",{d:"M3 13V7h4.5A1.5 1.5 0 009 5.5V1h2a2 2 0 012 2v10a2 2 0 01-2 2H5a2 2 0 01-2-2z",fill:"currentColor"}),Yr=r("path",{d:"M7.833 1h-.919a1 1 0 00-.707.293L3.293 4.207A1 1 0 003 4.914v.92h3.833a1 1 0 001-1V1z",fill:"currentColor"});function rt(){return(rt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var tt=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6 6.148l-3.8-3.94C1.797 1.79 2.044 1 2.576 1h10.848c.532 0 .779.79.377 1.208L10 6.148v5.625a.5.5 0 01-.17.376l-3 2.625a.5.5 0 01-.83-.376v-8.25z",fill:"currentColor"});function nt(){return(nt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var et=r("path",{d:"M1.5 2a.5.5 0 00-.5.5v4a.5.5 0 00.5.5h1a.5.5 0 00.5-.5v-2a.5.5 0 01.5-.5h2a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5h-4zM15 2.5a.5.5 0 00-.5-.5h-4a.5.5 0 00-.5.5v1a.5.5 0 00.5.5h2a.5.5 0 01.5.5v2a.5.5 0 00.5.5h1a.5.5 0 00.5-.5v-4zM1.5 14a.5.5 0 01-.5-.5v-4a.5.5 0 01.5-.5h1a.5.5 0 01.5.5v2a.5.5 0 00.5.5h2a.5.5 0 01.5.5v1a.5.5 0 01-.5.5h-4zM14.5 14a.5.5 0 00.5-.5v-4a.5.5 0 00-.5-.5h-1a.5.5 0 00-.5.5v2a.5.5 0 01-.5.5h-2a.5.5 0 00-.5.5v1a.5.5 0 00.5.5h4z",fill:"currentColor"});function at(){return(at=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var lt=r("path",{d:"M10.5 7a.5.5 0 01-.5-.5v-4a.5.5 0 01.5-.5h1a.5.5 0 01.5.5v2a.5.5 0 00.5.5h2a.5.5 0 01.5.5v1a.5.5 0 01-.5.5h-4zM6 9.5a.5.5 0 00-.5-.5h-4a.5.5 0 00-.5.5v1a.5.5 0 00.5.5h2a.5.5 0 01.5.5v2a.5.5 0 00.5.5h1a.5.5 0 00.5-.5v-4zM10.5 9a.5.5 0 00-.5.5v4a.5.5 0 00.5.5h1a.5.5 0 00.5-.5v-2a.5.5 0 01.5-.5h2a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5h-4zM5.5 7a.5.5 0 00.5-.5v-4a.5.5 0 00-.5-.5h-1a.5.5 0 00-.5.5v2a.5.5 0 01-.5.5h-2a.5.5 0 00-.5.5v1a.5.5 0 00.5.5h4z",fill:"currentColor"});function ot(){return(ot=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var it=r("path",{d:"M2 1a1 1 0 00-1 1v10a1 1 0 001 1h12a1 1 0 001-1V4a1 1 0 00-1-1H8a1 1 0 01-1-1 1 1 0 00-1-1H2z",fill:"currentColor"});function ht(){return(ht=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var vt=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 8A6 6 0 112 8a6 6 0 0112 0zm-5.301 4.699A4.73 4.73 0 015 11.683V10L3.257 8.257A4.75 4.75 0 018 3.25V4.5L6.5 6v1l-.5.5-.5-.5-1 1 .5.5h2.5L8 9v1l-1 1 1.699 1.699zm4.047-4.496a4.73 4.73 0 00-.924-3.025L10.5 6.5V9h1.25l.996-.797z",fill:"currentColor"});function ct(){return(ct=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var ut=r("path",{d:"M11 5V4a3 3 0 00-6 0v1h6z",fill:"currentColor"}),pt=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.5 6a.5.5 0 000 1H2v6h-.5a.5.5 0 000 1h13a.5.5 0 000-1H14V7h.5a.5.5 0 000-1h-13zm3 2.5a.5.5 0 011 0v3a.5.5 0 01-1 0v-3zM8 8a.5.5 0 00-.5.5v3a.5.5 0 001 0v-3A.5.5 0 008 8zm2.5.5a.5.5 0 011 0v3a.5.5 0 01-1 0v-3z",fill:"currentColor"});function ft(){return(ft=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var st=r("path",{d:"M7.52 2.4a.75.75 0 01.96 0l5.13 4.275a.5.5 0 01.06.71l-.217.253a.5.5 0 01-.686.07l-4.46-3.47a.5.5 0 00-.614 0l-4.46 3.47a.5.5 0 01-.686-.07l-.217-.253a.5.5 0 01.06-.71L7.52 2.4z",fill:"currentColor"}),wt=r("path",{d:"M7.685 5.43L4 8.316v4.922c0 .42.336.762.75.762H6.5a.5.5 0 00.5-.5v-2.04c0-.281.224-.509.5-.509h1c.276 0 .5.228.5.508V13.5a.5.5 0 00.5.5h1.75c.414 0 .75-.341.75-.762V8.316L8.315 5.43a.494.494 0 00-.63 0z",fill:"currentColor"});function gt(){return(gt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var dt=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 15A7 7 0 108 1a7 7 0 000 14zM7 4.5a1 1 0 012 0v4a1 1 0 01-2 0v-4zm2 7a1 1 0 11-2 0 1 1 0 012 0z",fill:"currentColor"});function yt(){return(yt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Ot=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 15A7 7 0 108 1a7 7 0 000 14zM9 4a1 1 0 11-2 0 1 1 0 012 0zM8 6a1 1 0 011 1v4h.5a.5.5 0 010 1h-3a.5.5 0 010-1H7V7h-.5a.5.5 0 010-1H8z",fill:"currentColor"});function bt(){return(bt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var zt=r("path",{d:"M8.418 7.428a3.5 3.5 0 10-3.836-5.856 3.5 3.5 0 003.836 5.856zM3.091 8.562c.308-.357.838-.339 1.252-.112.64.35 1.375.55 2.157.55s1.517-.2 2.157-.55c.414-.227.944-.245 1.252.112.11.128.214.263.31.403A1.996 1.996 0 009.5 10.5 2 2 0 008.177 14H2v-2.5c0-1.123.411-2.15 1.091-2.938z",fill:"currentColor"}),jt=r("path",{d:"M10.5 10.5a.998.998 0 011-1 1 1 0 011 1v1h1a1 1 0 110 2h-1v1a1 1 0 11-2 0v-1h-1a1 1 0 110-2h1v-1z",fill:"currentColor"});function xt(){return(xt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Mt=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6 10c.554 0 1.082-.113 1.562-.317L8.88 11l-.44.44a1.5 1.5 0 002.122 2.12l.439-.439.44.44a1.5 1.5 0 002.12-2.122L9.684 7.562A4 4 0 106 10zm-.75-3.5a1.25 1.25 0 100-2.5 1.25 1.25 0 000 2.5z",fill:"currentColor"});function Ct(){return(Ct=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var mt=r("path",{d:"M5 6a.5.5 0 01.5-.5h5a.5.5 0 010 1h-5A.5.5 0 015 6zM5.5 7.5a.5.5 0 000 1h3a.5.5 0 000-1h-3z",fill:"currentColor"}),Vt=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 2.5a1 1 0 00-1 1v7.813l-.29.49a.91.91 0 00-.068.1L1 13a1 1 0 001 1h12a1 1 0 001-1l-.642-1.096a.901.901 0 00-.067-.1L14 11.313V3.5a1 1 0 00-1-1H3zM12.5 4h-9v6.5h9V4z",fill:"currentColor"});function Ht(){return(Ht=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Pt=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4 7V5a4 4 0 118 0v2a1 1 0 011 1v6a1 1 0 01-1 1H4a1 1 0 01-1-1V8a1 1 0 011-1zm2-2a2 2 0 114 0v2H6V5zm2.587 5.81A.999.999 0 008 9a1 1 0 00-.58 1.815v1.852a.583.583 0 001.167 0V10.81z",fill:"currentColor"});function Rt(){return(Rt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Bt=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.323 9.819a5.302 5.302 0 006.463.805l4.144 4.144a1.3 1.3 0 101.838-1.838l-4.144-4.144a5.302 5.302 0 00-8.3-6.463 5.3 5.3 0 000 7.496zM7.98 4.162A2.7 2.7 0 114.162 7.98 2.7 2.7 0 017.98 4.162z",fill:"currentColor"});function Lt(){return(Lt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var At=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6 3l5.725-1.636A1 1 0 0113 2.326v7.348a1 1 0 01-1.275.962L6 9H3a2 2 0 01-2-2V5a2 2 0 012-2h3zm-.657 7H3v5h2.98a1 1 0 00.918-1.396L5.343 10zM16 6a2 2 0 01-2 2V4a2 2 0 012 2z",fill:"currentColor"});function St(){return(St=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var kt=r("path",{d:"M2 4a1 1 0 011-1h10a1 1 0 110 2H3a1 1 0 01-1-1zM2 8a1 1 0 011-1h10a1 1 0 110 2H3a1 1 0 01-1-1zM3 11a1 1 0 100 2h10a1 1 0 100-2H3z",fill:"currentColor"});function Dt(){return(Dt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Ut=r("path",{d:"M3 6.5a1 1 0 00-1 1v1a1 1 0 001 1h10a1 1 0 001-1v-1a1 1 0 00-1-1H3z",fill:"currentColor"});function Et(){return(Et=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Nt=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.75 8a3.75 3.75 0 01-5.485 3.326l5.06-5.06c.272.518.425 1.108.425 1.734zM4.674 9.735l5.06-5.06a3.75 3.75 0 00-5.06 5.06zM14 8A6 6 0 112 8a6 6 0 0112 0z",fill:"currentColor"});function Wt(){return(Wt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Ft=r("path",{d:"M4.5 6.25a.75.75 0 01.75-.75h3.5a.75.75 0 010 1.5h-3.5a.75.75 0 01-.75-.75zM4.5 8.75A.75.75 0 015.25 8h1.5a.75.75 0 010 1.5h-1.5a.75.75 0 01-.75-.75z",fill:"currentColor"}),It=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M15 10l-4 4H3a2 2 0 01-2-2V4a2 2 0 012-2h10a2 2 0 012 2v6zm-2-6H3v8h7v-2a1 1 0 011-1h2V4z",fill:"currentColor"});function Tt(){return(Tt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Gt=r("path",{d:"M13.823 2.45a.278.278 0 00-.272-.273l-4.045-.079a.277.277 0 00-.201.474l1.08 1.08-2.45 2.452a1.395 1.395 0 00-.148.174L5.999 8.065a1.369 1.369 0 101.936 1.936l1.787-1.788c.061-.043.12-.093.174-.147l2.451-2.452 1.081 1.081a.277.277 0 00.474-.201l-.079-4.045z",fill:"currentColor"}),_t=r("path",{d:"M7.25 3.129a.75.75 0 010 1.5H4a.5.5 0 00-.5.5v6.864a.5.5 0 00.5.5h6.864a.5.5 0 00.5-.5V8.75a.75.75 0 011.5 0v3.243a2 2 0 01-2 2H4a2 2 0 01-2-2V5.129a2 2 0 012-2h3.25z",fill:"currentColor"});function Xt(){return(Xt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var $t=r("path",{d:"M4.5 2a1 1 0 00-1 1v10a1 1 0 001 1h1a1 1 0 001-1V3a1 1 0 00-1-1h-1zM10.5 2a1 1 0 00-1 1v10a1 1 0 001 1h1a1 1 0 001-1V3a1 1 0 00-1-1h-1z",fill:"currentColor"});function qt(){return(qt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Kt=r("path",{d:"M11.5 4.5a3.5 3.5 0 11-7 0 3.5 3.5 0 017 0z",fill:"currentColor"}),Qt=r("path",{d:"M8 8c-.708 0-1.367-.21-1.918-.572A4.483 4.483 0 018 7c.686 0 1.336.154 1.918.428C9.368 7.79 8.708 8 8 8zM4.591 8.562c.308-.357.838-.339 1.252-.112C6.483 8.8 7.218 9 8 9s1.517-.2 2.158-.55c.413-.227.943-.245 1.251.112A4.482 4.482 0 0112.5 11.5V14h-9v-2.5c0-1.123.411-2.15 1.091-2.938z",fill:"currentColor"});function Zt(){return(Zt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Jt=r("path",{d:"M4.808 8.923a2.962 2.962 0 100-5.923 2.962 2.962 0 000 5.923zM2.982 9.304c-.35-.192-.798-.207-1.059.095A3.793 3.793 0 001 11.885V14h7.615v-2.115c0-.95-.347-1.819-.923-2.486-.26-.302-.708-.287-1.059-.095a3.79 3.79 0 01-1.825.465 3.79 3.79 0 01-1.826-.465zM9.615 11.885V13H15v-1.906c0-.734-.274-1.405-.727-1.92-.206-.234-.559-.222-.835-.074-.427.23-.917.36-1.438.36-.521 0-1.011-.13-1.438-.36-.276-.148-.63-.16-.835.073-.21.239-.38.51-.504.806.252.585.392 1.23.392 1.906zM14.333 6.288c0 1.264-1.044 2.289-2.333 2.289-1.289 0-2.333-1.025-2.333-2.289C9.667 5.025 10.71 4 12 4c1.289 0 2.333 1.025 2.333 2.288z",fill:"currentColor"});function Yt(){return(Yt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var rn=r("path",{d:"M10 4.5A3.497 3.497 0 016.5 8a3.484 3.484 0 01-1.918-.572A3.5 3.5 0 1110 4.5zM4.343 8.45c-.414-.227-.944-.245-1.252.112A4.482 4.482 0 002 11.5V14h6v-2.5c0-.445.194-.845.502-1.12.033-.82.393-1.554.954-2.076-.259-.051-.55.01-.799.146A4.48 4.48 0 016.5 9a4.48 4.48 0 01-2.157-.55z",fill:"currentColor"}),tn=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.5 10.5v.5a.5.5 0 00-.5.5v3a.5.5 0 00.5.5h4a.5.5 0 00.5-.5v-3a.5.5 0 00-.5-.5v-.5a2 2 0 10-4 0zm2-1a1 1 0 00-1 1v.5h2v-.5a1 1 0 00-1-1z",fill:"currentColor"});function nn(){return(nn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var en=r("path",{d:"M13.779 6.704a1.5 1.5 0 010 2.592l-7.523 4.388A1.5 1.5 0 014 12.388V3.612a1.5 1.5 0 012.256-1.296l7.523 4.388z",fill:"currentColor"});function an(){return(an=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var ln=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.5 2a1 1 0 00-1 1v3.5H3a1 1 0 00-1 1v1a1 1 0 001 1h3.5V13a1 1 0 001 1h1a1 1 0 001-1V9.5H13a1 1 0 001-1v-1a1 1 0 00-1-1H9.5V3a1 1 0 00-1-1h-1z",fill:"currentColor"});function on(){return(on=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var hn=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 15A7 7 0 108 1a7 7 0 000 14zM7 5a1 1 0 012 0v2h2a1 1 0 110 2H9v2a1 1 0 11-2 0V9H5a1 1 0 110-2h2V5z",fill:"currentColor"});function vn(){return(vn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var cn=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 15A7 7 0 108 1a7 7 0 000 14zM6.932 5.612C7.054 5.298 7.425 5 7.942 5 8.615 5 9 5.478 9 5.875c0 .162-.057.33-.172.476a.985.985 0 01-.242.216l-.016.01a1.141 1.141 0 01-.098.054c-.59.286-1.53.967-1.53 2.119V9a1 1 0 002 0c0-.035.011-.12.138-.27a2.66 2.66 0 01.587-.48 3 3 0 00.726-.656A2.742 2.742 0 0011 5.875C11 4.201 9.54 3 7.941 3c-1.275 0-2.43.745-2.873 1.888a1 1 0 101.864.724zM8 13a1 1 0 100-2 1 1 0 000 2z",fill:"currentColor"});function un(){return(un=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var pn=r("path",{d:"M4.018 9.402c-.05.328-.313.598-.645.598h-.8c-.331 0-.603-.27-.57-.6a5.996 5.996 0 012.543-4.325A5.997 5.997 0 017.974 4h.028c2.699 0 4.95 1.718 5.467 4h1.414c.541 0 .792.672.383 1.026l-2.482 2.15a.585.585 0 01-.765 0l-2.482-2.15A.584.584 0 019.92 8h1.446c-.468-1.085-1.68-2-3.364-2a3.98 3.98 0 00-2.543.89 3.996 3.996 0 00-1.441 2.512z",fill:"currentColor"});function fn(){return(fn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var sn=r("path",{d:"M8.033 2c2.699 0 4.95 1.718 5.467 4h1.414c.542 0 .792.672.383 1.026l-2.482 2.15a.584.584 0 01-.765 0l-2.482-2.15A.584.584 0 019.951 6h1.447c-.469-1.085-1.68-2-3.365-2-1.026 0-1.877.34-2.491.85-.243.202-.618.203-.817-.043l-.61-.754a.468.468 0 01.044-.651C5.163 2.534 6.53 2 8.033 2zM3.95 6.843a.584.584 0 00-.765 0L.703 8.992a.584.584 0 00.383 1.026h1.418C3.03 12.291 5.275 14 7.967 14c1.505 0 2.87-.534 3.874-1.402a.468.468 0 00.044-.65l-.61-.755c-.2-.246-.574-.245-.817-.043-.614.51-1.465.85-2.49.85-1.676 0-2.883-.904-3.358-1.982H6.05a.584.584 0 00.383-1.026L3.95 6.842z",fill:"currentColor"});function wn(){return(wn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var gn=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.39 7.713A3.488 3.488 0 018 8c-.494 0-.964-.102-1.39-.287L5.264 9.729a2.5 2.5 0 11-1.08-.634L5.57 7.02a3.5 3.5 0 114.86 0l1.385 2.076A2.501 2.501 0 0115 11.5a2.5 2.5 0 11-4.265-1.77L9.391 7.712zM9.75 4.5a1.75 1.75 0 11-3.5 0 1.75 1.75 0 013.5 0z",fill:"currentColor"});function dn(){return(dn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var yn=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2 3.6c0-.56 0-.84.109-1.054a1 1 0 01.437-.437C2.76 2 3.04 2 3.6 2h7.737c.245 0 .367 0 .482.028a1 1 0 01.29.12c.1.061.187.148.36.32l1.062 1.063c.173.173.26.26.322.36.055.09.095.188.12.29.027.115.027.237.027.482V12.4c0 .56 0 .84-.109 1.054a1 1 0 01-.437.437c-.2.102-.46.109-.954.109V9.284c0-.126 0-.25-.008-.353a1.01 1.01 0 00-.101-.385 1 1 0 00-.437-.437 1.01 1.01 0 00-.385-.1C11.465 8 11.342 8 11.216 8H4.784c-.126 0-.249 0-.353.008a1.01 1.01 0 00-.385.101 1 1 0 00-.437.437 1.01 1.01 0 00-.1.385c-.009.104-.009.227-.009.353V14c-.494 0-.753-.007-.954-.109a1 1 0 01-.437-.437C2 13.24 2 12.96 2 12.4V3.6zm2-.1a.5.5 0 00-.5.5v2a.5.5 0 00.5.5h5a.5.5 0 00.5-.5V4a.5.5 0 00-.5-.5H4z",fill:"currentColor"}),On=r("path",{d:"M11.5 9.3V14h-7V9.3c0-.148 0-.23.005-.288v-.006h.007C4.571 9 4.652 9 4.8 9h6.4c.148 0 .23 0 .288.005h.006v.007c.006.059.006.14.006.288z",fill:"currentColor"});function bn(){return(bn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var zn=r("path",{d:"M2.132 10.849a5.5 5.5 0 118.4-6.571 4 4 0 014.398 6.444 1 1 0 01-.15.192l-1.77 1.898a1.995 1.995 0 01-1.51.688H7.792a2.5 2.5 0 110-2H11.5l1.166-1.25H8.5a3.75 3.75 0 00-6.368.599z",fill:"currentColor"});function jn(){return(jn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var xn=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M13 2.75a1.75 1.75 0 01-2.123 1.71l-.619.866a3.497 3.497 0 011.186 2.049h1.17a1.75 1.75 0 110 1.25h-1.17a3.497 3.497 0 01-1.186 2.05l.619.865a1.75 1.75 0 11-1.046.686l-.662-.926a3.495 3.495 0 01-2.331.002l-.664.93a1.75 1.75 0 11-1.043-.69l.616-.863a3.497 3.497 0 01-1.191-2.054h-1.17a1.75 1.75 0 110-1.25h1.17c.147-.819.58-1.54 1.191-2.054l-.616-.863a1.75 1.75 0 111.043-.69l.664.93A3.494 3.494 0 018 4.5c.41 0 .803.07 1.17.2l.66-.926A1.75 1.75 0 1113 2.75zM9.75 8a1.75 1.75 0 11-3.5 0 1.75 1.75 0 013.5 0z",fill:"currentColor"});function Mn(){return(Mn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Cn=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.207 1.067a.75.75 0 00-.89.247l-.374.506a6.214 6.214 0 00-1.894.002l-.375-.506a.75.75 0 00-.89-.246l-1.126.467a.75.75 0 00-.454.804l.093.623c-.505.37-.958.82-1.338 1.34l-.623-.093a.75.75 0 00-.803.455l-.466 1.127a.75.75 0 00.247.89l.506.374a6.214 6.214 0 00.002 1.893l-.506.376a.75.75 0 00-.246.89l.467 1.126a.75.75 0 00.804.454l.623-.093c.37.505.82.958 1.34 1.338l-.093.623a.75.75 0 00.455.803l1.127.466a.75.75 0 00.89-.247l.374-.506a6.218 6.218 0 001.894-.002l.375.506a.75.75 0 00.89.246l1.126-.467a.75.75 0 00.454-.804l-.093-.623c.505-.37.958-.82 1.338-1.34l.623.093a.75.75 0 00.803-.455l.466-1.127a.75.75 0 00-.247-.89l-.506-.374a6.218 6.218 0 00-.002-1.894l.506-.375a.75.75 0 00.246-.89l-.467-1.126a.75.75 0 00-.804-.454l-.623.093a6.214 6.214 0 00-1.34-1.338l.093-.623a.75.75 0 00-.455-.803l-1.127-.466zm.334 7.984A2.75 2.75 0 115.46 6.949a2.75 2.75 0 015.082 2.102z",fill:"currentColor"});function mn(){return(mn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Vn=r("path",{d:"M1.8 5.2l3.4 2.2-3.79 2.526a.5.5 0 00-.142.688l.557.86a.5.5 0 00.697.145L7.5 8.3c.3-.2.5-.5.5-.8 0-.3-.2-.6-.4-.8L2.522 3.284a.5.5 0 00-.699.143l-.547.847a.5.5 0 00.155.695L1.8 5.2zM6.7 13a.5.5 0 00.5.5h7.7a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5H7.2a.5.5 0 00-.5.5v1z",fill:"currentColor"});function Hn(){return(Hn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Pn=r("path",{d:"M4.45 1.143a.584.584 0 00-.765 0L1.203 3.292a.584.584 0 00.383 1.026h1.312v9.352a1.169 1.169 0 102.338 0V4.318H6.55a.584.584 0 00.383-1.026L4.45 1.142zM8 5a1 1 0 000 2h6a1 1 0 100-2H8zM7 9a1 1 0 011-1h4a1 1 0 110 2H8a1 1 0 01-1-1zM8 11a1 1 0 100 2h2a1 1 0 100-2H8z",fill:"currentColor"});function Rn(){return(Rn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Bn=r("path",{d:"M4.45 14.696a.584.584 0 01-.765 0l-2.482-2.15a.584.584 0 01.383-1.025h1.312V2.168a1.169 1.169 0 112.338 0v9.351H6.55c.541 0 .792.673.383 1.027L4.45 14.696zM8 3a1 1 0 000 2h6a1 1 0 100-2H8zM7 7a1 1 0 011-1h4a1 1 0 110 2H8a1 1 0 01-1-1zM8 9a1 1 0 100 2h2a1 1 0 100-2H8z",fill:"currentColor"});function Ln(){return(Ln=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var An=r("path",{d:"M0 0h16v16H0V0zm14 4V2H2v2h12zm0 10V5H2v9h12zM8 6v7H6V6h2zm5 0v4H9V6h4zM5 8v5H3V8h2zm8 3v2H9v-2h4z",fill:"currentColor",fillRule:"evenodd"});function Sn(){return(Sn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var kn=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5 7a3 3 0 016 0v2.5c0 1.51-.957 2.798-2.298 3.288a1 1 0 10.265.967 4.512 4.512 0 002.787-2.785c.08.02.161.03.246.03h.5a2.5 2.5 0 00.406-4.967 5.002 5.002 0 00-9.813 0A2.5 2.5 0 003.5 11H4a1 1 0 001-1V7z",fill:"currentColor"});function Dn(){return(Dn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Un=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 3.25C1 2.56 1.56 2 2.25 2h11.5c.69 0 1.25.56 1.25 1.25v9.5c0 .69-.56 1.25-1.25 1.25H2.25C1.56 14 1 13.44 1 12.75v-9.5zm2 4.12V4h4.37v3.37H3zm0 1.25V12h4.37V8.62H3zM8.62 12H13V8.62H8.62V12zM13 7.37V4H8.62v3.37H13z",fill:"currentColor"});function En(){return(En=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Nn=r("path",{d:"M7.023 1.518c.513.024.957.363 1.12.853L9.38 6.108l1.56-2.092a1.24 1.24 0 011.872-.134l1.897 1.91c.388.39.388 1.023 0 1.413l-.377.354a.99.99 0 01-1.405 0l-.86-.89-2.122 2.847a1.239 1.239 0 01-2.172-.355L6.798 6.22 6.11 7.774c-.2.451-.644.742-1.135.742H1.994a.997.997 0 01-.994-1v-.5c0-.552.445-1 .994-1h2.174l1.66-3.758a1.242 1.242 0 011.195-.74zM14 12a1 1 0 011 1v.5a1 1 0 01-1 1H2a1 1 0 01-1-1V13a1 1 0 011-1h12z",fill:"currentColor"});function Wn(){return(Wn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Fn=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5 2a1 1 0 011-1h4a1 1 0 011 1h2a1 1 0 011 1v1H2V3a1 1 0 011-1h2zm9 3H2l1.678 8.392A2 2 0 005.64 15h4.72a2 2 0 001.962-1.608L14 5z",fill:"currentColor"});function In(){return(In=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Tn=r("path",{d:"M11.981 9.402c.05.328.313.598.645.598h.8c.331 0 .603-.27.57-.6a5.996 5.996 0 00-2.543-4.325A5.997 5.997 0 008.026 4h-.029C5.298 4 3.047 5.718 2.53 8H1.116a.584.584 0 00-.383 1.026l2.482 2.15c.22.19.545.19.765 0l2.482-2.15A.584.584 0 006.079 8H4.632c.47-1.085 1.68-2 3.365-2a3.98 3.98 0 012.543.89 3.996 3.996 0 011.441 2.512z",fill:"currentColor"});function Gn(){return(Gn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var _n=r("path",{d:"M8.5 4.613c0-.383.191-.74.51-.953a6.87 6.87 0 012.145-.949l2.406-.601a.353.353 0 01.439.342v7.88c0 .238 0 .357-.043.453a.5.5 0 01-.176.211c-.087.06-.204.081-.438.123l-3.9.71c-.324.058-.486.088-.612.042a.5.5 0 01-.264-.22c-.067-.116-.067-.28-.067-.61V4.613zM2 2.452c0-.23.216-.398.439-.342l2.407.601a6.87 6.87 0 012.144.95c.319.211.51.569.51.952v6.428c0 .33 0 .494-.067.61a.5.5 0 01-.264.22c-.126.046-.288.016-.612-.043l-3.9-.709c-.234-.042-.35-.063-.438-.123a.5.5 0 01-.176-.21C2 10.688 2 10.57 2 10.331v-7.88zM2.008 12.41a.5.5 0 01.581-.402l5.143.935c.177.032.359.032.536 0l5.143-.935a.5.5 0 01.178.984l-4.134.752c-.163.434-.753.756-1.455.756-.702 0-1.292-.322-1.455-.756l-4.134-.752a.5.5 0 01-.403-.581z",fill:"currentColor"});function Xn(){return(Xn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var $n=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6.157 4.221A2 2 0 0110 5v2H4a1 1 0 00-1 1v6a1 1 0 001 1h8a1 1 0 001-1V8a1 1 0 00-1-1V5a4 4 0 00-7.822-1.182C3.982 4.45 4.538 5 5.2 5c.442 0 .785-.372.957-.779zm2.43 6.589A.999.999 0 008 9a1 1 0 00-.58 1.815v1.852a.583.583 0 001.167 0V10.81z",fill:"currentColor"});function qn(){return(qn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Kn=r("path",{d:"M3.685 1.143c.22-.19.545-.19.765 0l2.482 2.149a.584.584 0 01-.383 1.026H5.236v7.364H6.55c.541 0 .792.672.383 1.026l-2.482 2.15a.584.584 0 01-.765 0l-2.482-2.15a.584.584 0 01.383-1.026h1.312V4.318H1.586a.584.584 0 01-.383-1.026l2.482-2.15zM8 8a1 1 0 011-1h5a1 1 0 110 2H9a1 1 0 01-1-1zM9 4a1 1 0 000 2h5a1 1 0 100-2H9zM8 11a1 1 0 011-1h5a1 1 0 110 2H9a1 1 0 01-1-1z",fill:"currentColor"});function Qn(){return(Qn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Zn=r("path",{d:"M7.527 1.21a.638.638 0 01.948 0l3.327 3.563c.422.452.123 1.227-.475 1.227H4.673c-.599 0-.898-.775-.476-1.227l3.33-3.562zm3.8 8.79c.598 0 .897.775.475 1.228l-3.327 3.56a.638.638 0 01-.948 0l-3.33-3.56C3.775 10.775 4.074 10 4.673 10h6.654z",fill:"currentColor",fillRule:"evenodd"});function Jn(){return(Jn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Yn=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.297 11v.938a4 4 0 10-.764-7.66A5.501 5.501 0 000 6.5a5.5 5.5 0 005.797 5.492V11h-.403c-1.395 0-2.08-1.7-1.075-2.667L7.472 5.3a1.55 1.55 0 012.15 0l3.152 3.034C13.78 9.301 13.094 11 11.7 11h-.402zM8.339 6.2a.3.3 0 01.416 0l3.152 3.034a.3.3 0 01-.208.516h-1.652v3.75a1.5 1.5 0 01-3 0V9.75H5.394a.3.3 0 01-.208-.516L8.339 6.2z",fill:"currentColor"});function re(){return(re=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var te=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.5 2.75a1.75 1.75 0 11-3.5 0 1.75 1.75 0 013.5 0zm0 5a1.75 1.75 0 11-3.5 0 1.75 1.75 0 013.5 0zM7.75 14.5a1.75 1.75 0 100-3.5 1.75 1.75 0 000 3.5z",fill:"currentColor"});function ne(){return(ne=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var ee=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 2.008c3.934 0 6.473 3.129 7.455 4.583l.043.064C15.713 6.97 16 7.391 16 8s-.287 1.03-.502 1.345l-.043.064c-.982 1.454-3.521 4.583-7.455 4.583S1.527 10.863.545 9.41l-.043-.064C.287 9.03 0 8.609 0 8s.287-1.03.502-1.345l.043-.064C1.527 5.137 4.066 2.008 8 2.008zM9.13 4.13A5.147 5.147 0 008 4.005C5.75 4.005 3.927 5.794 3.927 8c0 2.206 1.824 3.995 4.073 3.995 2.25 0 4.073-1.789 4.073-3.995 0-2.206-1.824-3.995-4.073-3.995.378 0 .756.045 1.13.126zM8 10.996c1.687 0 3.055-1.341 3.055-2.996S9.687 5.004 8 5.004 4.945 6.345 4.945 8 6.313 10.996 8 10.996z",fill:"currentColor"});function ae(){return(ae=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var le=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14.601 1.266a1.03 1.03 0 00-1.433.049L1.704 13.486a.987.987 0 00.062 1.407 1.03 1.03 0 001.433-.049l1.793-1.904A7.348 7.348 0 008 13.587c3.934 0 6.473-3.133 7.455-4.59l.043-.063c.215-.316.502-.737.502-1.347s-.287-1.03-.502-1.346l-.043-.065a12.85 12.85 0 00-1.949-2.275l1.157-1.228a.987.987 0 00-.062-1.407zm-2.93 4.585l-.764.81c.096.292.148.603.148.926 0 1.657-1.368 3-3.055 3-.246 0-.485-.028-.714-.082l-.763.81c.458.176.956.272 1.477.272 2.25 0 4.073-1.79 4.073-4 0-.622-.145-1.211-.403-1.736zM8 1.587c.919 0 1.762.171 2.526.452L8.98 3.68A5.13 5.13 0 008 3.587c-2.25 0-4.073 1.79-4.073 4 0 .435.07.853.201 1.245l-1.985 2.107A13.06 13.06 0 01.545 8.998l-.043-.064C.287 8.618 0 8.197 0 7.587s.287-1.03.502-1.346l.043-.065C1.527 4.72 4.066 1.587 8 1.587zm0 2c.327 0 .654.034.978.095l-.016.017A4.155 4.155 0 008 3.587zm0 1c.041 0 .083 0 .124.002L4.966 7.942a2.978 2.978 0 01-.02-.355c0-1.657 1.367-3 3.054-3z",fill:"currentColor"});function oe(){return(oe=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var ie=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.864 2.514a.983.983 0 00-1.728 0L1.122 13.539A.987.987 0 001.986 15h12.028a.987.987 0 00.864-1.461L8.864 2.514zM7 6a1 1 0 012 0v4a1 1 0 11-2 0V6zm2 7a1 1 0 11-2 0 1 1 0 012 0z",fill:"currentColor"});function he(){return(he=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var ve=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.203 3.404a1 1 0 00-1.414 0L8.314 5.879 5.839 3.404a1 1 0 00-1.414 0l-.707.707a1 1 0 000 1.414L6.192 8l-2.474 2.475a1 1 0 000 1.414l.707.707a1 1 0 001.414 0l2.475-2.475 2.475 2.475a1 1 0 001.414 0l.707-.707a1 1 0 000-1.414L10.435 8l2.475-2.475a1 1 0 000-1.414l-.707-.707z",fill:"currentColor"});function ce(){return(ce=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var ue=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 15A7 7 0 108 1a7 7 0 000 14zm1.414-9.828a1 1 0 111.414 1.414L9.414 8l1.414 1.414a1 1 0 11-1.414 1.414L8 9.414l-1.414 1.414a1 1 0 11-1.414-1.414L6.586 8 5.172 6.586a1 1 0 011.414-1.414L8 6.586l1.414-1.414z",fill:"currentColor"});var pe={ActivityFeed:function(t){return r("svg",g({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),d)},AddFile:function(t){return r("svg",y({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),O)},Apps:function(t){return r("svg",b({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),z)},Array:function(t){return r("svg",j({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),x)},ArrowDown:function(t){return r("svg",M({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),C)},ArrowLeft:function(t){return r("svg",m({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),V)},ArrowRight:function(t){return r("svg",H({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),P)},ArrowUp:function(t){return r("svg",R({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),B)},Beaker:function(t){return r("svg",L({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),A)},Bell:function(t){return r("svg",S({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),k)},Building:function(t){return r("svg",D({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),U)},Bulb:function(t){return r("svg",E({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),N,W)},Calendar:function(t){return r("svg",F({width:18,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),I)},CaretDown:function(t){return r("svg",T({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),G)},CaretLeft:function(t){return r("svg",_({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),X)},CaretRight:function(t){return r("svg",$({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),q)},CaretUp:function(t){return r("svg",K({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Q)},Charts:function(t){return r("svg",Z({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),J)},Checkmark:function(t){return r("svg",Y({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),rr)},CheckmarkWithCircle:function(t){return r("svg",tr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),nr)},ChevronDown:function(t){return r("svg",er({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),ar)},ChevronLeft:function(t){return r("svg",lr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),or)},ChevronRight:function(t){return r("svg",ir({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),hr)},ChevronUp:function(t){return r("svg",vr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),cr)},Clock:function(t){return r("svg",ur({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),pr)},ClockWithArrow:function(t){return r("svg",fr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),sr,wr)},Clone:function(t){return r("svg",gr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),dr,yr)},Cloud:function(t){return r("svg",Or({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),br)},Code:function(t){return r("svg",zr({width:16,height:16,fill:"none",viewBox:"0 0 16 16"},t),jr)},Connect:function(t){return r("svg",xr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Mr)},Copy:function(t){return r("svg",Cr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),mr)},CreditCard:function(t){return r("svg",Vr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Hr)},CurlyBraces:function(t){return r("svg",Pr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Rr)},Database:function(t){return r("svg",Br({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Lr,Ar,Sr)},Diagram:function(t){return r("svg",kr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Dr)},Disconnect:function(t){return r("svg",Ur({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Er)},Download:function(t){return r("svg",Nr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Wr)},Edit:function(t){return r("svg",Fr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Ir,Tr)},Ellipsis:function(t){return r("svg",Gr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),_r)},Export:function(t){return r("svg",Xr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),$r,qr)},Favorite:function(t){return r("svg",Kr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Qr)},File:function(t){return r("svg",Zr({width:16,height:16,fill:"none",viewBox:"0 0 16 16"},t),Jr,Yr)},Filter:function(t){return r("svg",rt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),tt)},FullScreenEnter:function(t){return r("svg",nt({width:16,height:16,fill:"none",viewBox:"0 0 16 16"},t),et)},FullScreenExit:function(t){return r("svg",at({width:16,height:16,fill:"none",viewBox:"0 0 16 16"},t),lt)},Folder:function(t){return r("svg",ot({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),it)},GlobeAmericas:function(t){return r("svg",ht({width:16,height:16,fill:"none",viewBox:"0 0 16 16"},t),vt)},GovernmentBuilding:function(t){return r("svg",ct({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),ut,pt)},Home:function(t){return r("svg",ft({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),st,wt)},ImportantWithCircle:function(t){return r("svg",gt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),dt)},InfoWithCircle:function(t){return r("svg",yt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Ot)},InviteUser:function(t){return r("svg",bt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),zt,jt)},Key:function(t){return r("svg",xt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Mt)},Laptop:function(t){return r("svg",Ct({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),mt,Vt)},Lock:function(t){return r("svg",Ht({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Pt)},MagnifyingGlass:function(t){return r("svg",Rt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Bt)},Megaphone:function(t){return r("svg",Lt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),At)},Menu:function(t){return r("svg",St({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),kt)},Minus:function(t){return r("svg",Dt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Ut)},NotAllowed:function(t){return r("svg",Et({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Nt)},Note:function(t){return r("svg",Wt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Ft,It)},OpenNewTab:function(t){return r("svg",Tt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Gt,_t)},Pause:function(t){return r("svg",Xt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),$t)},Person:function(t){return r("svg",qt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Kt,Qt)},PersonGroup:function(t){return r("svg",Zt({width:16,height:16,fill:"none",viewBox:"0 0 16 16"},t),Jt)},PersonWithLock:function(t){return r("svg",Yt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),rn,tn)},Play:function(t){return r("svg",nn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),en)},Plus:function(t){return r("svg",an({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),ln)},PlusWithCircle:function(t){return r("svg",on({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),hn)},QuestionMarkWithCircle:function(t){return r("svg",vn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),cn)},Redo:function(t){return r("svg",un({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),pn)},Refresh:function(t){return r("svg",fn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),sn)},ReplicaSet:function(t){return r("svg",wn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),gn)},Save:function(t){return r("svg",dn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),yn,On)},Serverless:function(t){return r("svg",bn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),zn)},ShardedCluster:function(t){return r("svg",jn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),xn)},Settings:function(t){return r("svg",Mn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Cn)},Shell:function(t){return r("svg",mn({width:16,height:16,fill:"none",viewBox:"0 0 16 16"},t),Vn)},SortAscending:function(t){return r("svg",Hn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Pn)},SortDescending:function(t){return r("svg",Rn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Bn)},Stitch:function(t){return r("svg",Ln({width:16,height:16,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),An)},Support:function(t){return r("svg",Sn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),kn)},Table:function(t){return r("svg",Dn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Un)},TimeSeries:function(t){return r("svg",En({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Nn)},Trash:function(t){return r("svg",Wn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Fn)},Undo:function(t){return r("svg",In({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Tn)},University:function(t){return r("svg",Gn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),_n)},Unlock:function(t){return r("svg",Xn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),$n)},Unsorted:function(t){return r("svg",qn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Kn)},UpDownCarets:function(t){return r("svg",Qn({width:16,height:16,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Zn)},Upload:function(t){return r("svg",Jn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Yn)},VerticalEllipsis:function(t){return r("svg",re({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),te)},Visibility:function(t){return r("svg",ne({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),ee)},VisibilityOff:function(t){return r("svg",ae({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),le)},Warning:function(t){return r("svg",oe({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),ie)},X:function(t){return r("svg",he({width:17,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),ve)},XWithCircle:function(t){return r("svg",ce({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),ue)}},fe=Object.keys(pe).reduce((function(r,t){return r[t]=w(t,pe[t]),r}),{});function se(r){return null!=r&&"object"===l(r)&&"type"in r&&!0===r.type.isGlyph}var we=f(fe);export default we;export{v as Size,f as createIconComponent,fe as glyphs,se as isComponentGlyph};
|
|
1
|
+
import{createElement as r}from"react";import t from"prop-types";import{jsx as n}from"@emotion/react";import{css as e,cx as a}from"@leafygreen-ui/emotion";function l(r){return(l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(r){return typeof r}:function(r){return r&&"function"==typeof Symbol&&r.constructor===Symbol&&r!==Symbol.prototype?"symbol":typeof r})(r)}function o(r,t,n){return t in r?Object.defineProperty(r,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):r[t]=n,r}function i(){return(i=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}function h(r,t){if(null==r)return{};var n,e,a=function(r,t){if(null==r)return{};var n,e,a={},l=Object.keys(r);for(e=0;e<l.length;e++)n=l[e],t.indexOf(n)>=0||(a[n]=r[n]);return a}(r,t);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(r);for(e=0;e<l.length;e++)n=l[e],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(r,n)&&(a[n]=r[n])}return a}var v={Small:"small",Default:"default",Large:"large",XLarge:"xlarge"},c={small:14,default:16,large:20,xlarge:24};var u,p=["glyph"];function f(r){var e=function(t){var e=t.glyph,a=h(t,p),l=r[e];return n(l,a)};return e.displayName="Icon",e.propTypes={glyph:t.oneOf(Object.keys(r)).isRequired,size:t.oneOfType([t.oneOf(Object.values(v)),t.number])},e}var s=["className","size","fill","title","aria-labelledby","aria-label","role"];function w(r,l){function p(t){var p,f,w,g=t.className,d=t.size,y=void 0===d?v.Default:d,O=t.fill,b=t.title,z=t["aria-labelledby"],j=t["aria-label"],x=t.role,M=void 0===x?"img":x,C=h(t,s),m=e(u||(f=["\n color: ",";\n "],w||(w=f.slice(0)),u=Object.freeze(Object.defineProperties(f,{raw:{value:Object.freeze(w)}}))),O),V="number"==typeof y?y:c[y];return"img"!==M&&"presentation"!==M&&console.warn("Please provide a valid role to this component. Valid options are 'img' and 'presentation'. If you'd like the Icon to be accessible to screen readers please use 'img', otherwise set the role to 'presentation'."),n(l,i({className:a(o({},m,null!=O),g),height:V,width:V,role:M},function(r,t,n){var e,a,l=n["aria-label"],i=n["aria-labelledby"],h=n.title;switch(r){case"img":return l||i||h?(o(e={},"aria-labelledby",i),o(e,"aria-label",l),o(e,"title",h),e):{"aria-label":(a=t,"".concat(a.replace(/([a-z])([A-Z])/g,"$1 $2")," Icon"))};case"presentation":return{"aria-hidden":!0,alt:""}}}(M,r,(o(p={title:b},"aria-label",j),o(p,"aria-labelledby",z),p)),C))}return p.displayName=r,p.isGlyph=!0,p.propTypes={fill:t.string,size:t.oneOfType([t.oneOf(Object.values(v)),t.number]),className:t.string},p}function g(){return(g=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var d=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 13V7h4.5A1.5 1.5 0 007 5.5V1h2a2 2 0 012 2v4.515a2.5 2.5 0 00-2.612 1.602l-1.06 2.808A2.501 2.501 0 005.59 15H3a2 2 0 01-2-2zM4.914 1h.92v3.833a1 1 0 01-1 1H1v-.919a1 1 0 01.293-.707L2.5 3l1.707-1.707A1 1 0 014.914 1zM10.8 9.003a1 1 0 01.904.784l.61 2.792.508-.714a1 1 0 01.814-.42H15a1 1 0 010 2h-.848l-1.519 2.135a1 1 0 01-1.792-.367l-.371-1.701-.444 1.175a1 1 0 01-.935.646H8a1 1 0 110-2h.4l1.392-3.686a1 1 0 011.008-.644z",fill:"currentColor"});function y(){return(y=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var O=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 7v6a2 2 0 002 2h5.968a2.25 2.25 0 01.794-4.238A2.251 2.251 0 0111 8.984V3a2 2 0 00-2-2H7v4.5A1.5 1.5 0 015.5 7H1zm8 6a1 1 0 001 1h1v1a1 1 0 102 0v-1h1a1 1 0 100-2h-1v-1a1 1 0 10-2 0v1h-1a1 1 0 00-1 1zM5.833 1h-.919a1 1 0 00-.707.293L2.5 3 1.293 4.207A1 1 0 001 4.914v.92h3.833a1 1 0 001-1V1z",fill:"currentColor"});function b(){return(b=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var z=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 3H3v4h4V3zm0 6H3v4h4V9zm2-6h4v4H9V3zm4 6H9v4h4V9z",fill:"currentColor"});function j(){return(j=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var x=r("path",{d:"M2.5 1a.5.5 0 00-.5.5v13a.5.5 0 00.5.5h4a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5H4V3h2.5a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5h-4zM13.5 1a.5.5 0 01.5.5v13a.5.5 0 01-.5.5h-4a.5.5 0 01-.5-.5v-1a.5.5 0 01.5-.5H12V3H9.5a.5.5 0 01-.5-.5v-1a.5.5 0 01.5-.5h4z",fill:"currentColor"});function M(){return(M=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var C=r("path",{d:"M9.168 3v6.944l1.535-1.535a1 1 0 011.414 0l.239.24a1 1 0 010 1.414l-3.383 3.382c-.008.01-.017.018-.026.027l-.239.24a1 1 0 01-1.414 0L3.643 10.06a1 1 0 010-1.414l.239-.239a1 1 0 011.414 0L6.83 9.941V3a1 1 0 011-1h.338a1 1 0 011 1z",fill:"currentColor"});function m(){return(m=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var V=r("path",{d:"M13 6.832H6.056L7.59 5.297a1 1 0 000-1.414l-.24-.239a1 1 0 00-1.414 0L2.555 7.027c-.01.008-.018.017-.027.026l-.24.239a1 1 0 000 1.414l3.652 3.651a1 1 0 001.414 0l.239-.239a1 1 0 000-1.414L6.059 9.17H13a1 1 0 001-1v-.338a1 1 0 00-1-1z",fill:"currentColor"});function H(){return(H=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var P=r("path",{d:"M3 6.832h6.944L8.41 5.297a1 1 0 010-1.414l.24-.239a1 1 0 011.414 0l3.382 3.383c.01.008.018.017.027.026l.24.239a1 1 0 010 1.414l-3.652 3.651a1 1 0 01-1.414 0l-.239-.239a1 1 0 010-1.414L9.941 9.17H3a1 1 0 01-1-1v-.338a1 1 0 011-1z",fill:"currentColor"});function R(){return(R=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var B=r("path",{d:"M9.168 13V6.056l1.535 1.535a1 1 0 001.414 0l.239-.24a1 1 0 000-1.414L8.973 2.555a1.023 1.023 0 00-.026-.027l-.239-.24a1 1 0 00-1.414 0L3.643 5.94a1 1 0 000 1.414l.239.239a1 1 0 001.414 0L6.83 6.059V13a1 1 0 001 1h.338a1 1 0 001-1z",fill:"currentColor"});function L(){return(L=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var A=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.953 1.8c0-.28 0-.42.054-.527a.5.5 0 01.219-.218C6.333 1 6.473 1 6.753 1h2.4c.28 0 .42 0 .527.054a.5.5 0 01.218.219c.055.107.055.247.055.527v.4c0 .28 0 .42-.055.527a.5.5 0 01-.218.219C9.573 3 9.433 3 9.153 3h-2.4c-.28 0-.42 0-.527-.054a.5.5 0 01-.219-.219c-.054-.107-.054-.247-.054-.527v-.4zm.056 2.47c-.056.108-.056.25-.056.535V6l-3.007 5.412c-.663 1.193-.994 1.79-.932 2.277a1.5 1.5 0 00.6 1.02C3.01 15 3.693 15 5.057 15h5.791c1.365 0 2.047 0 2.444-.291a1.5 1.5 0 00.6-1.02c.062-.488-.27-1.084-.932-2.277L9.953 6V4.805c0-.285 0-.427-.056-.535a.5.5 0 00-.214-.214C9.575 4 9.433 4 9.148 4h-2.39c-.285 0-.427 0-.536.056a.5.5 0 00-.213.214zM9.333 9l-3.03.5-1.287 2.31c-.218.392-.327.588-.309.748a.5.5 0 00.205.348c.13.094.355.094.802.094h4.48c.447 0 .67 0 .801-.094a.5.5 0 00.205-.348c.019-.16-.09-.355-.307-.746L9.333 9z",fill:"currentColor"});function S(){return(S=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var k=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.625 6.138a4.656 4.656 0 00-3.268-3.925C9.228 1.52 8.67 1 8 1c-.67 0-1.228.52-1.357 1.213a4.656 4.656 0 00-3.268 3.925l-.452 3.963h.026a.95.95 0 000 1.899h10.102a.95.95 0 000-1.899h.026l-.452-3.963zM8 15a2 2 0 01-2-2h4a2 2 0 01-2 2z",fill:"currentColor"});function D(){return(D=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var U=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 2a1 1 0 011-1h5a1 1 0 011 1v13H6v-2H4v2H1v-4h4.5a.5.5 0 000-1H1V8h4.5a.5.5 0 000-1H1V5h4.5a.5.5 0 000-1H1V2zm8 9h4.5a.5.5 0 000-1H9V8h4.5a.5.5 0 000-1H9V5a1 1 0 011-1h5a1 1 0 011 1v10h-2v-2h-2v2H9v-4z",fill:"currentColor"});function _(){return(_=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var E=r("path",{d:"M12.331 8.5a5 5 0 10-8.612.086L5.408 11.5a1 1 0 00.866.499H6.5V6a1.5 1.5 0 113 0v6h.224a1 1 0 00.863-.496L12.34 8.5h-.009z",fill:"currentColor"}),N=r("path",{d:"M7.5 6v6h1V6a.5.5 0 00-1 0zM10 14v-1H6v1a1 1 0 001 1h2a1 1 0 001-1z",fill:"currentColor"});function W(){return(W=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var F=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5 2a1 1 0 012 0v1a1 1 0 01-2 0V2zm5 1H8a2 2 0 11-4 0 2 2 0 00-2 2v7a2 2 0 002 2h10a2 2 0 002-2V5a2 2 0 00-2-2 2 2 0 11-4 0zm1 0a1 1 0 102 0V2a1 1 0 10-2 0v1zm2 4h-3v3h3V7z",fill:"currentColor"});function I(){return(I=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var T=r("path",{d:"M8.679 10.796a.554.554 0 01-.858 0L4.64 6.976C4.32 6.594 4.582 6 5.069 6h6.362c.487 0 .748.594.43.976l-3.182 3.82z",fill:"currentColor"});function G(){return(G=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var X=r("path",{d:"M5.204 8.679a.553.553 0 010-.858l3.82-3.181c.382-.319.976-.058.976.429v6.362c0 .487-.594.748-.976.43l-3.82-3.182z",fill:"currentColor"});function $(){return($=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var q=r("path",{d:"M10.796 7.321a.554.554 0 010 .858l-3.82 3.181c-.382.319-.976.058-.976-.429V4.57c0-.487.594-.748.976-.43l3.82 3.182z",fill:"currentColor"});function K(){return(K=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Q=r("path",{d:"M7.321 5.204a.553.553 0 01.858 0l3.181 3.82c.319.382.058.976-.429.976H4.57c-.487 0-.748-.594-.43-.976l3.182-3.82z",fill:"currentColor"});function Z(){return(Z=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var J=r("path",{d:"M11.5 13a1 1 0 001 1h1a1 1 0 001-1V3a1 1 0 00-1-1h-1a1 1 0 00-1 1v10zM7.5 14a1 1 0 01-1-1V6a1 1 0 011-1h1a1 1 0 011 1v7a1 1 0 01-1 1h-1zM2.5 14a1 1 0 01-1-1V9a1 1 0 011-1h1a1 1 0 011 1v4a1 1 0 01-1 1h-1z",fill:"currentColor"});function Y(){return(Y=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var rr=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6.306 9.05l5.455-5.455a1 1 0 011.414 0l.707.707a1 1 0 010 1.414l-7.067 7.068a1 1 0 01-1.5-.098l-3.049-3.97a1 1 0 01.184-1.402l.595-.457a1.25 1.25 0 011.753.23L6.306 9.05z",fill:"currentColor"});function tr(){return(tr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var nr=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 15A7 7 0 108 1a7 7 0 000 14zm2.448-10.104a.997.997 0 111.508 1.306l-4.572 5.28a1 1 0 01-1.64-.07l-1.82-2.868a1 1 0 111.69-1.07l1.1 1.734 3.734-4.312z",fill:"currentColor"});function er(){return(er=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var ar=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.636 5.364a1 1 0 000 1.414l4.95 4.95.707.707a1 1 0 001.414 0l.707-.707 4.95-4.95a1 1 0 000-1.414l-.707-.707a1 1 0 00-1.414 0L8 8.899 3.757 4.657a1 1 0 00-1.414 0l-.707.707z",fill:"currentColor"});function lr(){return(lr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var or=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.778 1.636a1 1 0 00-1.414 0l-4.95 4.95-.707.707a1 1 0 000 1.414l.707.707 4.95 4.95a1 1 0 001.414 0l.707-.707a1 1 0 000-1.414L7.243 8l4.242-4.243a1 1 0 000-1.414l-.707-.707z",fill:"currentColor"});function ir(){return(ir=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var hr=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.364 14.364a1 1 0 001.414 0l4.95-4.95.707-.707a1 1 0 000-1.414l-.707-.707-4.95-4.95a1 1 0 00-1.414 0l-.707.707a1 1 0 000 1.414L8.899 8l-4.242 4.243a1 1 0 000 1.414l.707.707z",fill:"currentColor"});function vr(){return(vr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var cr=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14.364 10.778a1 1 0 000-1.414l-4.95-4.95-.707-.707a1 1 0 00-1.414 0l-.707.707-4.95 4.95a1 1 0 000 1.414l.707.707a1 1 0 001.414 0L8 7.243l4.243 4.242a1 1 0 001.414 0l.707-.707z",fill:"currentColor"});function ur(){return(ur=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var pr=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 14A6 6 0 108 2a6 6 0 000 12zm-.75-9.25a.75.75 0 011.5 0v3.16l1.744 1.526a.75.75 0 01-.988 1.128L7.511 8.818a.761.761 0 01-.19-.25.747.747 0 01-.071-.318v-3.5z",fill:"currentColor"});function fr(){return(fr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var sr=r("path",{d:"M13 8a5 5 0 01-7.304 4.438c-.348-.18-.787-.13-1.038.172l-.33.398c-.276.33-.22.828.152 1.044a7 7 0 10-1.452-10.98L1.97 2.146a.584.584 0 00-.964.521l.455 3.252c.04.287.285.51.576.511H5.32a.58.58 0 00.387-1.018l-1.168-1.02A5 5 0 0113 8z",fill:"currentColor"}),wr=r("path",{d:"M7.25 5.25a.75.75 0 011.5 0v2.668l1.68 1.524a.75.75 0 11-.988 1.129L7.507 8.815a.758.758 0 01-.257-.565v-3z",fill:"currentColor"});function gr(){return(gr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var dr=r("path",{d:"M5.5 12a2 2 0 002 2h5a2 2 0 002-2V8a2 2 0 00-2-2h-5a2 2 0 00-2 2v4z",fill:"currentColor"}),yr=r("path",{d:"M4.25 10H3.5a2 2 0 01-2-2V4a2 2 0 012-2h5a2 2 0 012 2v.75h-2V4h-5v4h.75v2z",fill:"currentColor"});function Or(){return(Or=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var br=r("path",{d:"M12.571 8.143c0 1.775-.899 3.34-2.267 4.264l-.014.01a5.12 5.12 0 01-2.861.869H2.857a2.857 2.857 0 01-.545-5.663 5.144 5.144 0 0110.26.52zM13.821 8.143a6.38 6.38 0 01-2.358 4.96 3.429 3.429 0 102.17-6.506c.123.494.188 1.013.188 1.546z",fill:"currentColor"});function zr(){return(zr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var jr=r("path",{d:"M6.11 13.262a.5.5 0 00.395.586l.737.143a.5.5 0 00.585-.396L9.926 2.738a.5.5 0 00-.396-.586l-.737-.143a.5.5 0 00-.585.396L6.109 13.262zM1.36 7.246L3.976 5.11a.507.507 0 01.704.063l.64.752a.483.483 0 01-.064.69L3.562 7.998 5.256 9.38c.212.173.24.482.064.69l-.64.752a.507.507 0 01-.704.062L1.36 8.75A.971.971 0 011 7.998c0-.29.132-.566.36-.752zM14.636 7.246L12.02 5.11a.507.507 0 00-.704.063l-.64.752a.483.483 0 00.064.69l1.694 1.382L10.74 9.38a.483.483 0 00-.064.69l.64.752a.507.507 0 00.704.062l2.616-2.134a.971.971 0 00.36-.752.971.971 0 00-.36-.752z",fill:"currentColor"});function xr(){return(xr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Mr=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.867 8.898a4.048 4.048 0 00.687-4.8l1.275-1.275a.584.584 0 000-.826l-.826-.826a.584.584 0 00-.826 0l-1.29 1.29a4.048 4.048 0 00-4.734.722L5.277 5.058a.323.323 0 00-.041.035L3.182 7.148a4.048 4.048 0 00-.72 4.738l-1.29 1.29a.584.584 0 000 .827l.825.826a.584.584 0 00.826 0l1.278-1.278a4.048 4.048 0 004.795-.689l1.876-1.875a.324.324 0 00.041-.035l2.054-2.054zM6.561 6.776L4.685 8.65a1.916 1.916 0 000 2.707c.747.746 1.961.747 2.707 0l2.055-2.054a.321.321 0 01.04-.035l1.877-1.875a1.916 1.916 0 000-2.707 1.916 1.916 0 00-2.707 0L6.602 6.74a.32.32 0 01-.04.035z",fill:"currentColor"});function Cr(){return(Cr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var mr=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 5.714v4.572C1 11.233 1.768 12 2.714 12H5.75V7.11c0-.566.227-1.108.63-1.504l2.294-2.252c.1-.099.21-.186.326-.262v-.378C9 1.768 8.232 1 7.286 1H5.8v3.429c0 .71-.576 1.285-1.286 1.285H1zm8-.928L7.257 6.498A.857.857 0 007 7.11v.688h3.01a.857.857 0 00.857-.858V4h-.717a.857.857 0 00-.6.246l-.55.54zM4.867 1H4.15a.857.857 0 00-.601.246L1.257 3.498A.857.857 0 001 4.11v.688h3.01a.857.857 0 00.857-.858V1zM7 12V8.714H10.514c.71 0 1.286-.575 1.286-1.285V4h1.486C14.233 4 15 4.768 15 5.714v7.572c0 .947-.768 1.714-1.714 1.714H8.714A1.714 1.714 0 017 13.286V12z",fill:"currentColor"});function Vr(){return(Vr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Hr=r("path",{d:"M3 3a2 2 0 00-2 2h14a2 2 0 00-2-2H3zM15 7H1v4a2 2 0 002 2h10a2 2 0 002-2V7z",fill:"currentColor"});function Pr(){return(Pr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Rr=r("path",{d:"M3 3.544a2.5 2.5 0 012.5-2.5h1a.5.5 0 01.5.5v1.105a.353.353 0 01-.353.353h-.79A.858.858 0 005 3.86v2.802a1.5 1.5 0 01-.816 1.335A1.5 1.5 0 015 9.332v2.803c0 .473.384.857.858.857h.789c.195 0 .353.158.353.353v1.105a.5.5 0 01-.5.5h-1a2.5 2.5 0 01-2.5-2.5v-1.956a1.5 1.5 0 00-1.5-1.5.5.5 0 01-.5-.5v-1a.5.5 0 01.5-.5 1.5 1.5 0 001.5-1.5v-1.95zM13 12.45a2.5 2.5 0 01-2.5 2.5h-1a.5.5 0 01-.5-.5v-1.105c0-.195.158-.353.353-.353h.79a.858.858 0 00.857-.858V9.332a1.5 1.5 0 01.816-1.335A1.5 1.5 0 0111 6.662V3.859a.858.858 0 00-.858-.857h-.789A.353.353 0 019 2.65V1.544a.5.5 0 01.5-.5h1a2.5 2.5 0 012.5 2.5V5.5A1.5 1.5 0 0014.5 7a.5.5 0 01.5.5v1a.5.5 0 01-.5.5 1.5 1.5 0 00-1.5 1.5v1.95z",fill:"currentColor"});function Br(){return(Br=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Lr=r("path",{d:"M14 4.111c0 .098 0 .193-.002.286L14 4.5v.25c0 .328-.148.642-.472.95-.33.314-.818.598-1.424.834-1.211.473-2.772.716-4.104.716-1.332 0-2.893-.243-4.104-.716-.606-.236-1.094-.52-1.424-.834C2.148 5.392 2 5.078 2 4.75V4.5c0-.039 0-.077.003-.115C2 4.295 2 4.205 2 4.11 2 2 5.041 1 8 1s6 1 6 3.111z",fill:"currentColor"}),Ar=r("path",{d:"M2 6.615V8.75c0 .328.148.642.472.95.33.315.818.598 1.424.834 1.211.473 2.772.716 4.104.716 1.332 0 2.893-.243 4.104-.716.606-.237 1.094-.52 1.424-.834.324-.308.472-.622.472-.95V6.615c-.428.347-.96.627-1.533.85-1.349.528-3.037.785-4.467.785-1.43 0-3.118-.257-4.467-.784-.573-.224-1.105-.504-1.533-.85z",fill:"currentColor"}),Sr=r("path",{d:"M12.467 11.466c.573-.224 1.105-.504 1.533-.85v.884c0 .038 0 .076-.003.114.002.09.003.182.003.275C14 14 10.959 15 8 15s-6-1-6-3.111c0-.097 0-.193.002-.287A2.546 2.546 0 012 11.5v-.885c.428.347.96.627 1.533.85 1.349.528 3.037.785 4.467.785 1.43 0 3.118-.257 4.467-.784z",fill:"currentColor"});function kr(){return(kr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Dr=r("path",{d:"M6 2.75A.75.75 0 016.75 2h2.5a.75.75 0 01.75.75v1.5a.75.75 0 01-.75.75H8.5v2h4.75a.75.75 0 01.75.75V10h.25a.75.75 0 01.75.75v1.5a.75.75 0 01-.75.75h-2a.75.75 0 01-.75-.75v-1.5a.75.75 0 01.75-.75H13V8H8.5v2H9a.75.75 0 01.75.75v1.5A.75.75 0 019 13H7a.75.75 0 01-.75-.75v-1.5A.75.75 0 017 10h.5V8H3v2h.75a.75.75 0 01.75.75v1.5a.75.75 0 01-.75.75h-2a.75.75 0 01-.75-.75v-1.5a.75.75 0 01.75-.75H2V7.75A.75.75 0 012.75 7H7.5V5h-.75A.75.75 0 016 4.25v-1.5z",fill:"currentColor"});function Ur(){return(Ur=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var _r=r("path",{d:"M7.093 3.671a.317.317 0 010-.448L8.14 2.175a4.024 4.024 0 015.685 0 4.024 4.024 0 010 5.685l-1.048 1.047a.317.317 0 01-.448 0L11.28 7.86a.317.317 0 010-.449l1.048-1.047a1.906 1.906 0 000-2.693 1.906 1.906 0 00-2.693 0L8.59 4.718a.317.317 0 01-.449 0L7.093 3.671zM1.293 1.293a1.001 1.001 0 011.416 0l11.998 11.998a1.001 1.001 0 01-1.416 1.416l-3.159-3.16-2.272 2.277a4.024 4.024 0 01-5.685 0 4.024 4.024 0 010-5.684l2.273-2.277L1.293 2.71a1.001 1.001 0 010-1.416zm4.65 6.066L3.672 9.636a1.906 1.906 0 000 2.693c.743.742 1.95.742 2.693 0l2.272-2.277-2.692-2.693z",fill:"currentColor"});function Er(){return(Er=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Nr=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.524 2.575v5.557h1.712c.706 0 1.033.783.5 1.196l-3.237 2.506a.832.832 0 01-.998 0L4.265 9.328c-.534-.413-.207-1.196.499-1.196h1.611V2.575a1.575 1.575 0 013.15 0zM2.5 11h1.8l2.405 1.862a2.132 2.132 0 002.59 0L11.7 11h1.8a1.5 1.5 0 010 3h-11a1.5 1.5 0 010-3z",fill:"currentColor"});function Wr(){return(Wr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Fr=r("g",{clipPath:"url(#Edit_svg__clip0)"},r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.922 1.681a.963.963 0 011.362 0l1.363 1.363a.963.963 0 010 1.362L13.284 5.77 10.56 3.044 9.538 4.066l2.725 2.725-7.154 7.153-3.746 1.022 1.021-3.747 9.538-9.538z",fill:"currentColor"})),Ir=r("defs",null,r("clipPath",{id:"Edit_svg__clip0"},r("path",{fill:"currentColor",d:"M0 0h16v16H0z"})));function Tr(){return(Tr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Gr=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.75 6a1.75 1.75 0 110 3.5 1.75 1.75 0 010-3.5zm5 0a1.75 1.75 0 110 3.5 1.75 1.75 0 010-3.5zm6.75 1.75a1.75 1.75 0 10-3.5 0 1.75 1.75 0 003.5 0z",fill:"currentColor"});function Xr(){return(Xr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var $r=r("path",{d:"M14.623 5.186a.278.278 0 000-.385l-2.805-2.915a.277.277 0 00-.477.192v1.424A6.5 6.5 0 005 10v.1a1.5 1.5 0 003 0V10a3.5 3.5 0 013.34-3.496v1.405c0 .25.305.373.478.193l2.805-2.916z",fill:"currentColor"}),qr=r("path",{d:"M6.5 3.879a.75.75 0 00-.75-.75H4a2 2 0 00-2 2v6.864a2 2 0 002 2h6.864a2 2 0 002-2V10.05a.75.75 0 00-1.5 0v1.943a.5.5 0 01-.5.5H4a.5.5 0 01-.5-.5V5.129a.5.5 0 01.5-.5h1.75a.75.75 0 00.75-.75z",fill:"currentColor"});function Kr(){return(Kr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Qr=r("path",{d:"M7.538 1.11a.5.5 0 01.924 0l1.537 3.696a.5.5 0 00.421.306l3.99.32a.5.5 0 01.285.878l-3.04 2.604a.5.5 0 00-.16.496l.928 3.893a.5.5 0 01-.747.542L8.261 11.76a.5.5 0 00-.522 0l-3.415 2.086a.5.5 0 01-.747-.542l.928-3.893a.5.5 0 00-.16-.496L1.304 6.31a.5.5 0 01.285-.878l3.99-.32A.5.5 0 006 4.806L7.538 1.11z",fill:"currentColor"});function Zr(){return(Zr=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Jr=r("path",{d:"M3 13V7h4.5A1.5 1.5 0 009 5.5V1h2a2 2 0 012 2v10a2 2 0 01-2 2H5a2 2 0 01-2-2z",fill:"currentColor"}),Yr=r("path",{d:"M7.833 1h-.919a1 1 0 00-.707.293L3.293 4.207A1 1 0 003 4.914v.92h3.833a1 1 0 001-1V1z",fill:"currentColor"});function rt(){return(rt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var tt=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6 6.148l-3.8-3.94C1.797 1.79 2.044 1 2.576 1h10.848c.532 0 .779.79.377 1.208L10 6.148v5.625a.5.5 0 01-.17.376l-3 2.625a.5.5 0 01-.83-.376v-8.25z",fill:"currentColor"});function nt(){return(nt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var et=r("path",{d:"M1.5 2a.5.5 0 00-.5.5v4a.5.5 0 00.5.5h1a.5.5 0 00.5-.5v-2a.5.5 0 01.5-.5h2a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5h-4zM15 2.5a.5.5 0 00-.5-.5h-4a.5.5 0 00-.5.5v1a.5.5 0 00.5.5h2a.5.5 0 01.5.5v2a.5.5 0 00.5.5h1a.5.5 0 00.5-.5v-4zM1.5 14a.5.5 0 01-.5-.5v-4a.5.5 0 01.5-.5h1a.5.5 0 01.5.5v2a.5.5 0 00.5.5h2a.5.5 0 01.5.5v1a.5.5 0 01-.5.5h-4zM14.5 14a.5.5 0 00.5-.5v-4a.5.5 0 00-.5-.5h-1a.5.5 0 00-.5.5v2a.5.5 0 01-.5.5h-2a.5.5 0 00-.5.5v1a.5.5 0 00.5.5h4z",fill:"currentColor"});function at(){return(at=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var lt=r("path",{d:"M10.5 7a.5.5 0 01-.5-.5v-4a.5.5 0 01.5-.5h1a.5.5 0 01.5.5v2a.5.5 0 00.5.5h2a.5.5 0 01.5.5v1a.5.5 0 01-.5.5h-4zM6 9.5a.5.5 0 00-.5-.5h-4a.5.5 0 00-.5.5v1a.5.5 0 00.5.5h2a.5.5 0 01.5.5v2a.5.5 0 00.5.5h1a.5.5 0 00.5-.5v-4zM10.5 9a.5.5 0 00-.5.5v4a.5.5 0 00.5.5h1a.5.5 0 00.5-.5v-2a.5.5 0 01.5-.5h2a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5h-4zM5.5 7a.5.5 0 00.5-.5v-4a.5.5 0 00-.5-.5h-1a.5.5 0 00-.5.5v2a.5.5 0 01-.5.5h-2a.5.5 0 00-.5.5v1a.5.5 0 00.5.5h4z",fill:"currentColor"});function ot(){return(ot=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var it=r("path",{d:"M2 1a1 1 0 00-1 1v10a1 1 0 001 1h12a1 1 0 001-1V4a1 1 0 00-1-1H8a1 1 0 01-1-1 1 1 0 00-1-1H2z",fill:"currentColor"});function ht(){return(ht=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var vt=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 8A6 6 0 112 8a6 6 0 0112 0zm-5.301 4.699A4.73 4.73 0 015 11.683V10L3.257 8.257A4.75 4.75 0 018 3.25V4.5L6.5 6v1l-.5.5-.5-.5-1 1 .5.5h2.5L8 9v1l-1 1 1.699 1.699zm4.047-4.496a4.73 4.73 0 00-.924-3.025L10.5 6.5V9h1.25l.996-.797z",fill:"currentColor"});function ct(){return(ct=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var ut=r("path",{d:"M11 5V4a3 3 0 00-6 0v1h6z",fill:"currentColor"}),pt=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.5 6a.5.5 0 000 1H2v6h-.5a.5.5 0 000 1h13a.5.5 0 000-1H14V7h.5a.5.5 0 000-1h-13zm3 2.5a.5.5 0 011 0v3a.5.5 0 01-1 0v-3zM8 8a.5.5 0 00-.5.5v3a.5.5 0 001 0v-3A.5.5 0 008 8zm2.5.5a.5.5 0 011 0v3a.5.5 0 01-1 0v-3z",fill:"currentColor"});function ft(){return(ft=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var st=r("path",{d:"M7.52 2.4a.75.75 0 01.96 0l5.13 4.275a.5.5 0 01.06.71l-.217.253a.5.5 0 01-.686.07l-4.46-3.47a.5.5 0 00-.614 0l-4.46 3.47a.5.5 0 01-.686-.07l-.217-.253a.5.5 0 01.06-.71L7.52 2.4z",fill:"currentColor"}),wt=r("path",{d:"M7.685 5.43L4 8.316v4.922c0 .42.336.762.75.762H6.5a.5.5 0 00.5-.5v-2.04c0-.281.224-.509.5-.509h1c.276 0 .5.228.5.508V13.5a.5.5 0 00.5.5h1.75c.414 0 .75-.341.75-.762V8.316L8.315 5.43a.494.494 0 00-.63 0z",fill:"currentColor"});function gt(){return(gt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var dt=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 15A7 7 0 108 1a7 7 0 000 14zM7 4.5a1 1 0 012 0v4a1 1 0 01-2 0v-4zm2 7a1 1 0 11-2 0 1 1 0 012 0z",fill:"currentColor"});function yt(){return(yt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Ot=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 15A7 7 0 108 1a7 7 0 000 14zM9 4a1 1 0 11-2 0 1 1 0 012 0zM8 6a1 1 0 011 1v4h.5a.5.5 0 010 1h-3a.5.5 0 010-1H7V7h-.5a.5.5 0 010-1H8z",fill:"currentColor"});function bt(){return(bt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var zt=r("path",{d:"M8.418 7.428a3.5 3.5 0 10-3.836-5.856 3.5 3.5 0 003.836 5.856zM3.091 8.562c.308-.357.838-.339 1.252-.112.64.35 1.375.55 2.157.55s1.517-.2 2.157-.55c.414-.227.944-.245 1.252.112.11.128.214.263.31.403A1.996 1.996 0 009.5 10.5 2 2 0 008.177 14H2v-2.5c0-1.123.411-2.15 1.091-2.938z",fill:"currentColor"}),jt=r("path",{d:"M10.5 10.5a.998.998 0 011-1 1 1 0 011 1v1h1a1 1 0 110 2h-1v1a1 1 0 11-2 0v-1h-1a1 1 0 110-2h1v-1z",fill:"currentColor"});function xt(){return(xt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Mt=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6 10c.554 0 1.082-.113 1.562-.317L8.88 11l-.44.44a1.5 1.5 0 002.122 2.12l.439-.439.44.44a1.5 1.5 0 002.12-2.122L9.684 7.562A4 4 0 106 10zm-.75-3.5a1.25 1.25 0 100-2.5 1.25 1.25 0 000 2.5z",fill:"currentColor"});function Ct(){return(Ct=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var mt=r("path",{d:"M5 6a.5.5 0 01.5-.5h5a.5.5 0 010 1h-5A.5.5 0 015 6zM5.5 7.5a.5.5 0 000 1h3a.5.5 0 000-1h-3z",fill:"currentColor"}),Vt=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 2.5a1 1 0 00-1 1v7.813l-.29.49a.91.91 0 00-.068.1L1 13a1 1 0 001 1h12a1 1 0 001-1l-.642-1.096a.901.901 0 00-.067-.1L14 11.313V3.5a1 1 0 00-1-1H3zM12.5 4h-9v6.5h9V4z",fill:"currentColor"});function Ht(){return(Ht=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Pt=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4 7V5a4 4 0 118 0v2a1 1 0 011 1v6a1 1 0 01-1 1H4a1 1 0 01-1-1V8a1 1 0 011-1zm2-2a2 2 0 114 0v2H6V5zm2.587 5.81A.999.999 0 008 9a1 1 0 00-.58 1.815v1.852a.583.583 0 001.167 0V10.81z",fill:"currentColor"});function Rt(){return(Rt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Bt=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.323 9.819a5.302 5.302 0 006.463.805l4.144 4.144a1.3 1.3 0 101.838-1.838l-4.144-4.144a5.302 5.302 0 00-8.3-6.463 5.3 5.3 0 000 7.496zM7.98 4.162A2.7 2.7 0 114.162 7.98 2.7 2.7 0 017.98 4.162z",fill:"currentColor"});function Lt(){return(Lt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var At=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6 3l5.725-1.636A1 1 0 0113 2.326v7.348a1 1 0 01-1.275.962L6 9H3a2 2 0 01-2-2V5a2 2 0 012-2h3zm-.657 7H3v5h2.98a1 1 0 00.918-1.396L5.343 10zM16 6a2 2 0 01-2 2V4a2 2 0 012 2z",fill:"currentColor"});function St(){return(St=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var kt=r("path",{d:"M2 4a1 1 0 011-1h10a1 1 0 110 2H3a1 1 0 01-1-1zM2 8a1 1 0 011-1h10a1 1 0 110 2H3a1 1 0 01-1-1zM3 11a1 1 0 100 2h10a1 1 0 100-2H3z",fill:"currentColor"});function Dt(){return(Dt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Ut=r("path",{d:"M3 6.5a1 1 0 00-1 1v1a1 1 0 001 1h10a1 1 0 001-1v-1a1 1 0 00-1-1H3z",fill:"currentColor"});function _t(){return(_t=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Et=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.75 8a3.75 3.75 0 01-5.485 3.326l5.06-5.06c.272.518.425 1.108.425 1.734zM4.674 9.735l5.06-5.06a3.75 3.75 0 00-5.06 5.06zM14 8A6 6 0 112 8a6 6 0 0112 0z",fill:"currentColor"});function Nt(){return(Nt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Wt=r("path",{d:"M4.5 6.25a.75.75 0 01.75-.75h3.5a.75.75 0 010 1.5h-3.5a.75.75 0 01-.75-.75zM4.5 8.75A.75.75 0 015.25 8h1.5a.75.75 0 010 1.5h-1.5a.75.75 0 01-.75-.75z",fill:"currentColor"}),Ft=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M15 10l-4 4H3a2 2 0 01-2-2V4a2 2 0 012-2h10a2 2 0 012 2v6zm-2-6H3v8h7v-2a1 1 0 011-1h2V4z",fill:"currentColor"});function It(){return(It=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Tt=r("path",{d:"M13.823 2.45a.278.278 0 00-.272-.273l-4.045-.079a.277.277 0 00-.201.474l1.08 1.08-2.45 2.452a1.395 1.395 0 00-.148.174L5.999 8.065a1.369 1.369 0 101.936 1.936l1.787-1.788c.061-.043.12-.093.174-.147l2.451-2.452 1.081 1.081a.277.277 0 00.474-.201l-.079-4.045z",fill:"currentColor"}),Gt=r("path",{d:"M7.25 3.129a.75.75 0 010 1.5H4a.5.5 0 00-.5.5v6.864a.5.5 0 00.5.5h6.864a.5.5 0 00.5-.5V8.75a.75.75 0 011.5 0v3.243a2 2 0 01-2 2H4a2 2 0 01-2-2V5.129a2 2 0 012-2h3.25z",fill:"currentColor"});function Xt(){return(Xt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var $t=r("path",{d:"M4.5 2a1 1 0 00-1 1v10a1 1 0 001 1h1a1 1 0 001-1V3a1 1 0 00-1-1h-1zM10.5 2a1 1 0 00-1 1v10a1 1 0 001 1h1a1 1 0 001-1V3a1 1 0 00-1-1h-1z",fill:"currentColor"});function qt(){return(qt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Kt=r("path",{d:"M11.5 4.5a3.5 3.5 0 11-7 0 3.5 3.5 0 017 0z",fill:"currentColor"}),Qt=r("path",{d:"M8 8c-.708 0-1.367-.21-1.918-.572A4.483 4.483 0 018 7c.686 0 1.336.154 1.918.428C9.368 7.79 8.708 8 8 8zM4.591 8.562c.308-.357.838-.339 1.252-.112C6.483 8.8 7.218 9 8 9s1.517-.2 2.158-.55c.413-.227.943-.245 1.251.112A4.482 4.482 0 0112.5 11.5V14h-9v-2.5c0-1.123.411-2.15 1.091-2.938z",fill:"currentColor"});function Zt(){return(Zt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Jt=r("path",{d:"M4.808 8.923a2.962 2.962 0 100-5.923 2.962 2.962 0 000 5.923zM2.982 9.304c-.35-.192-.798-.207-1.059.095A3.793 3.793 0 001 11.885V14h7.615v-2.115c0-.95-.347-1.819-.923-2.486-.26-.302-.708-.287-1.059-.095a3.79 3.79 0 01-1.825.465 3.79 3.79 0 01-1.826-.465zM9.615 11.885V13H15v-1.906c0-.734-.274-1.405-.727-1.92-.206-.234-.559-.222-.835-.074-.427.23-.917.36-1.438.36-.521 0-1.011-.13-1.438-.36-.276-.148-.63-.16-.835.073-.21.239-.38.51-.504.806.252.585.392 1.23.392 1.906zM14.333 6.288c0 1.264-1.044 2.289-2.333 2.289-1.289 0-2.333-1.025-2.333-2.289C9.667 5.025 10.71 4 12 4c1.289 0 2.333 1.025 2.333 2.288z",fill:"currentColor"});function Yt(){return(Yt=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var rn=r("path",{d:"M10 4.5A3.497 3.497 0 016.5 8a3.484 3.484 0 01-1.918-.572A3.5 3.5 0 1110 4.5zM4.343 8.45c-.414-.227-.944-.245-1.252.112A4.482 4.482 0 002 11.5V14h6v-2.5c0-.445.194-.845.502-1.12.033-.82.393-1.554.954-2.076-.259-.051-.55.01-.799.146A4.48 4.48 0 016.5 9a4.48 4.48 0 01-2.157-.55z",fill:"currentColor"}),tn=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.5 10.5v.5a.5.5 0 00-.5.5v3a.5.5 0 00.5.5h4a.5.5 0 00.5-.5v-3a.5.5 0 00-.5-.5v-.5a2 2 0 10-4 0zm2-1a1 1 0 00-1 1v.5h2v-.5a1 1 0 00-1-1z",fill:"currentColor"});function nn(){return(nn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var en=r("path",{d:"M13.779 6.704a1.5 1.5 0 010 2.592l-7.523 4.388A1.5 1.5 0 014 12.388V3.612a1.5 1.5 0 012.256-1.296l7.523 4.388z",fill:"currentColor"});function an(){return(an=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var ln=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.5 2a1 1 0 00-1 1v3.5H3a1 1 0 00-1 1v1a1 1 0 001 1h3.5V13a1 1 0 001 1h1a1 1 0 001-1V9.5H13a1 1 0 001-1v-1a1 1 0 00-1-1H9.5V3a1 1 0 00-1-1h-1z",fill:"currentColor"});function on(){return(on=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var hn=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 15A7 7 0 108 1a7 7 0 000 14zM7 5a1 1 0 012 0v2h2a1 1 0 110 2H9v2a1 1 0 11-2 0V9H5a1 1 0 110-2h2V5z",fill:"currentColor"});function vn(){return(vn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var cn=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 15A7 7 0 108 1a7 7 0 000 14zM6.932 5.612C7.054 5.298 7.425 5 7.942 5 8.615 5 9 5.478 9 5.875c0 .162-.057.33-.172.476a.985.985 0 01-.242.216l-.016.01a1.141 1.141 0 01-.098.054c-.59.286-1.53.967-1.53 2.119V9a1 1 0 002 0c0-.035.011-.12.138-.27a2.66 2.66 0 01.587-.48 3 3 0 00.726-.656A2.742 2.742 0 0011 5.875C11 4.201 9.54 3 7.941 3c-1.275 0-2.43.745-2.873 1.888a1 1 0 101.864.724zM8 13a1 1 0 100-2 1 1 0 000 2z",fill:"currentColor"});function un(){return(un=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var pn=r("path",{d:"M4.018 9.402c-.05.328-.313.598-.645.598h-.8c-.331 0-.603-.27-.57-.6a5.996 5.996 0 012.543-4.325A5.997 5.997 0 017.974 4h.028c2.699 0 4.95 1.718 5.467 4h1.414c.541 0 .792.672.383 1.026l-2.482 2.15a.585.585 0 01-.765 0l-2.482-2.15A.584.584 0 019.92 8h1.446c-.468-1.085-1.68-2-3.364-2a3.98 3.98 0 00-2.543.89 3.996 3.996 0 00-1.441 2.512z",fill:"currentColor"});function fn(){return(fn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var sn=r("path",{d:"M8.033 2c2.699 0 4.95 1.718 5.467 4h1.414c.542 0 .792.672.383 1.026l-2.482 2.15a.584.584 0 01-.765 0l-2.482-2.15A.584.584 0 019.951 6h1.447c-.469-1.085-1.68-2-3.365-2-1.026 0-1.877.34-2.491.85-.243.202-.618.203-.817-.043l-.61-.754a.468.468 0 01.044-.651C5.163 2.534 6.53 2 8.033 2zM3.95 6.843a.584.584 0 00-.765 0L.703 8.992a.584.584 0 00.383 1.026h1.418C3.03 12.291 5.275 14 7.967 14c1.505 0 2.87-.534 3.874-1.402a.468.468 0 00.044-.65l-.61-.755c-.2-.246-.574-.245-.817-.043-.614.51-1.465.85-2.49.85-1.676 0-2.883-.904-3.358-1.982H6.05a.584.584 0 00.383-1.026L3.95 6.842z",fill:"currentColor"});function wn(){return(wn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var gn=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.39 7.713A3.488 3.488 0 018 8c-.494 0-.964-.102-1.39-.287L5.264 9.729a2.5 2.5 0 11-1.08-.634L5.57 7.02a3.5 3.5 0 114.86 0l1.385 2.076A2.501 2.501 0 0115 11.5a2.5 2.5 0 11-4.265-1.77L9.391 7.712zM9.75 4.5a1.75 1.75 0 11-3.5 0 1.75 1.75 0 013.5 0z",fill:"currentColor"});function dn(){return(dn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var yn=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2 3.6c0-.56 0-.84.109-1.054a1 1 0 01.437-.437C2.76 2 3.04 2 3.6 2h7.737c.245 0 .367 0 .482.028a1 1 0 01.29.12c.1.061.187.148.36.32l1.062 1.063c.173.173.26.26.322.36.055.09.095.188.12.29.027.115.027.237.027.482V12.4c0 .56 0 .84-.109 1.054a1 1 0 01-.437.437c-.2.102-.46.109-.954.109V9.284c0-.126 0-.25-.008-.353a1.01 1.01 0 00-.101-.385 1 1 0 00-.437-.437 1.01 1.01 0 00-.385-.1C11.465 8 11.342 8 11.216 8H4.784c-.126 0-.249 0-.353.008a1.01 1.01 0 00-.385.101 1 1 0 00-.437.437 1.01 1.01 0 00-.1.385c-.009.104-.009.227-.009.353V14c-.494 0-.753-.007-.954-.109a1 1 0 01-.437-.437C2 13.24 2 12.96 2 12.4V3.6zm2-.1a.5.5 0 00-.5.5v2a.5.5 0 00.5.5h5a.5.5 0 00.5-.5V4a.5.5 0 00-.5-.5H4z",fill:"currentColor"}),On=r("path",{d:"M11.5 9.3V14h-7V9.3c0-.148 0-.23.005-.288v-.006h.007C4.571 9 4.652 9 4.8 9h6.4c.148 0 .23 0 .288.005h.006v.007c.006.059.006.14.006.288z",fill:"currentColor"});function bn(){return(bn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var zn=r("path",{d:"M2.132 10.849a5.5 5.5 0 118.4-6.571 4 4 0 014.398 6.444 1 1 0 01-.15.192l-1.77 1.898a1.995 1.995 0 01-1.51.688H7.792a2.5 2.5 0 110-2H11.5l1.166-1.25H8.5a3.75 3.75 0 00-6.368.599z",fill:"currentColor"});function jn(){return(jn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var xn=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M13 2.75a1.75 1.75 0 01-2.123 1.71l-.619.866a3.497 3.497 0 011.186 2.049h1.17a1.75 1.75 0 110 1.25h-1.17a3.497 3.497 0 01-1.186 2.05l.619.865a1.75 1.75 0 11-1.046.686l-.662-.926a3.495 3.495 0 01-2.331.002l-.664.93a1.75 1.75 0 11-1.043-.69l.616-.863a3.497 3.497 0 01-1.191-2.054h-1.17a1.75 1.75 0 110-1.25h1.17c.147-.819.58-1.54 1.191-2.054l-.616-.863a1.75 1.75 0 111.043-.69l.664.93A3.494 3.494 0 018 4.5c.41 0 .803.07 1.17.2l.66-.926A1.75 1.75 0 1113 2.75zM9.75 8a1.75 1.75 0 11-3.5 0 1.75 1.75 0 013.5 0z",fill:"currentColor"});function Mn(){return(Mn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Cn=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.207 1.067a.75.75 0 00-.89.247l-.374.506a6.214 6.214 0 00-1.894.002l-.375-.506a.75.75 0 00-.89-.246l-1.126.467a.75.75 0 00-.454.804l.093.623c-.505.37-.958.82-1.338 1.34l-.623-.093a.75.75 0 00-.803.455l-.466 1.127a.75.75 0 00.247.89l.506.374a6.214 6.214 0 00.002 1.893l-.506.376a.75.75 0 00-.246.89l.467 1.126a.75.75 0 00.804.454l.623-.093c.37.505.82.958 1.34 1.338l-.093.623a.75.75 0 00.455.803l1.127.466a.75.75 0 00.89-.247l.374-.506a6.218 6.218 0 001.894-.002l.375.506a.75.75 0 00.89.246l1.126-.467a.75.75 0 00.454-.804l-.093-.623c.505-.37.958-.82 1.338-1.34l.623.093a.75.75 0 00.803-.455l.466-1.127a.75.75 0 00-.247-.89l-.506-.374a6.218 6.218 0 00-.002-1.894l.506-.375a.75.75 0 00.246-.89l-.467-1.126a.75.75 0 00-.804-.454l-.623.093a6.214 6.214 0 00-1.34-1.338l.093-.623a.75.75 0 00-.455-.803l-1.127-.466zm.334 7.984A2.75 2.75 0 115.46 6.949a2.75 2.75 0 015.082 2.102z",fill:"currentColor"});function mn(){return(mn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Vn=r("path",{d:"M1.8 5.2l3.4 2.2-3.79 2.526a.5.5 0 00-.142.688l.557.86a.5.5 0 00.697.145L7.5 8.3c.3-.2.5-.5.5-.8 0-.3-.2-.6-.4-.8L2.522 3.284a.5.5 0 00-.699.143l-.547.847a.5.5 0 00.155.695L1.8 5.2zM6.7 13a.5.5 0 00.5.5h7.7a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5H7.2a.5.5 0 00-.5.5v1z",fill:"currentColor"});function Hn(){return(Hn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Pn=r("path",{d:"M4.45 1.143a.584.584 0 00-.765 0L1.203 3.292a.584.584 0 00.383 1.026h1.312v9.352a1.169 1.169 0 102.338 0V4.318H6.55a.584.584 0 00.383-1.026L4.45 1.142zM8 5a1 1 0 000 2h6a1 1 0 100-2H8zM7 9a1 1 0 011-1h4a1 1 0 110 2H8a1 1 0 01-1-1zM8 11a1 1 0 100 2h2a1 1 0 100-2H8z",fill:"currentColor"});function Rn(){return(Rn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Bn=r("path",{d:"M4.45 14.696a.584.584 0 01-.765 0l-2.482-2.15a.584.584 0 01.383-1.025h1.312V2.168a1.169 1.169 0 112.338 0v9.351H6.55c.541 0 .792.673.383 1.027L4.45 14.696zM8 3a1 1 0 000 2h6a1 1 0 100-2H8zM7 7a1 1 0 011-1h4a1 1 0 110 2H8a1 1 0 01-1-1zM8 9a1 1 0 100 2h2a1 1 0 100-2H8z",fill:"currentColor"});function Ln(){return(Ln=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var An=r("path",{d:"M0 0h16v16H0V0zm14 4V2H2v2h12zm0 10V5H2v9h12zM8 6v7H6V6h2zm5 0v4H9V6h4zM5 8v5H3V8h2zm8 3v2H9v-2h4z",fill:"currentColor",fillRule:"evenodd"});function Sn(){return(Sn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var kn=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5 7a3 3 0 016 0v2.5c0 1.51-.957 2.798-2.298 3.288a1 1 0 10.265.967 4.512 4.512 0 002.787-2.785c.08.02.161.03.246.03h.5a2.5 2.5 0 00.406-4.967 5.002 5.002 0 00-9.813 0A2.5 2.5 0 003.5 11H4a1 1 0 001-1V7z",fill:"currentColor"});function Dn(){return(Dn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Un=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 3.25C1 2.56 1.56 2 2.25 2h11.5c.69 0 1.25.56 1.25 1.25v9.5c0 .69-.56 1.25-1.25 1.25H2.25C1.56 14 1 13.44 1 12.75v-9.5zm2 4.12V4h4.37v3.37H3zm0 1.25V12h4.37V8.62H3zM8.62 12H13V8.62H8.62V12zM13 7.37V4H8.62v3.37H13z",fill:"currentColor"});function _n(){return(_n=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var En=r("path",{d:"M7.023 1.518c.513.024.957.363 1.12.853L9.38 6.108l1.56-2.092a1.24 1.24 0 011.872-.134l1.897 1.91c.388.39.388 1.023 0 1.413l-.377.354a.99.99 0 01-1.405 0l-.86-.89-2.122 2.847a1.239 1.239 0 01-2.172-.355L6.798 6.22 6.11 7.774c-.2.451-.644.742-1.135.742H1.994a.997.997 0 01-.994-1v-.5c0-.552.445-1 .994-1h2.174l1.66-3.758a1.242 1.242 0 011.195-.74zM14 12a1 1 0 011 1v.5a1 1 0 01-1 1H2a1 1 0 01-1-1V13a1 1 0 011-1h12z",fill:"currentColor"});function Nn(){return(Nn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Wn=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5 2a1 1 0 011-1h4a1 1 0 011 1h2a1 1 0 011 1v1H2V3a1 1 0 011-1h2zm9 3H2l1.678 8.392A2 2 0 005.64 15h4.72a2 2 0 001.962-1.608L14 5z",fill:"currentColor"});function Fn(){return(Fn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var In=r("path",{d:"M11.981 9.402c.05.328.313.598.645.598h.8c.331 0 .603-.27.57-.6a5.996 5.996 0 00-2.543-4.325A5.997 5.997 0 008.026 4h-.029C5.298 4 3.047 5.718 2.53 8H1.116a.584.584 0 00-.383 1.026l2.482 2.15c.22.19.545.19.765 0l2.482-2.15A.584.584 0 006.079 8H4.632c.47-1.085 1.68-2 3.365-2a3.98 3.98 0 012.543.89 3.996 3.996 0 011.441 2.512z",fill:"currentColor"});function Tn(){return(Tn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Gn=r("path",{d:"M8.5 4.613c0-.383.191-.74.51-.953a6.87 6.87 0 012.145-.949l2.406-.601a.353.353 0 01.439.342v7.88c0 .238 0 .357-.043.453a.5.5 0 01-.176.211c-.087.06-.204.081-.438.123l-3.9.71c-.324.058-.486.088-.612.042a.5.5 0 01-.264-.22c-.067-.116-.067-.28-.067-.61V4.613zM2 2.452c0-.23.216-.398.439-.342l2.407.601a6.87 6.87 0 012.144.95c.319.211.51.569.51.952v6.428c0 .33 0 .494-.067.61a.5.5 0 01-.264.22c-.126.046-.288.016-.612-.043l-3.9-.709c-.234-.042-.35-.063-.438-.123a.5.5 0 01-.176-.21C2 10.688 2 10.57 2 10.331v-7.88zM2.008 12.41a.5.5 0 01.581-.402l5.143.935c.177.032.359.032.536 0l5.143-.935a.5.5 0 01.178.984l-4.134.752c-.163.434-.753.756-1.455.756-.702 0-1.292-.322-1.455-.756l-4.134-.752a.5.5 0 01-.403-.581z",fill:"currentColor"});function Xn(){return(Xn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var $n=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6.157 4.221A2 2 0 0110 5v2H4a1 1 0 00-1 1v6a1 1 0 001 1h8a1 1 0 001-1V8a1 1 0 00-1-1V5a4 4 0 00-7.822-1.182C3.982 4.45 4.538 5 5.2 5c.442 0 .785-.372.957-.779zm2.43 6.589A.999.999 0 008 9a1 1 0 00-.58 1.815v1.852a.583.583 0 001.167 0V10.81z",fill:"currentColor"});function qn(){return(qn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Kn=r("path",{d:"M3.685 1.143c.22-.19.545-.19.765 0l2.482 2.149a.584.584 0 01-.383 1.026H5.236v7.364H6.55c.541 0 .792.672.383 1.026l-2.482 2.15a.584.584 0 01-.765 0l-2.482-2.15a.584.584 0 01.383-1.026h1.312V4.318H1.586a.584.584 0 01-.383-1.026l2.482-2.15zM8 8a1 1 0 011-1h5a1 1 0 110 2H9a1 1 0 01-1-1zM9 4a1 1 0 000 2h5a1 1 0 100-2H9zM8 11a1 1 0 011-1h5a1 1 0 110 2H9a1 1 0 01-1-1z",fill:"currentColor"});function Qn(){return(Qn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Zn=r("path",{d:"M7.527 1.21a.638.638 0 01.948 0l3.327 3.563c.422.452.123 1.227-.475 1.227H4.673c-.599 0-.898-.775-.476-1.227l3.33-3.562zm3.8 8.79c.598 0 .897.775.475 1.228l-3.327 3.56a.638.638 0 01-.948 0l-3.33-3.56C3.775 10.775 4.074 10 4.673 10h6.654z",fill:"currentColor",fillRule:"evenodd"});function Jn(){return(Jn=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var Yn=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.297 11v.938a4 4 0 10-.764-7.66A5.501 5.501 0 000 6.5a5.5 5.5 0 005.797 5.492V11h-.403c-1.395 0-2.08-1.7-1.075-2.667L7.472 5.3a1.55 1.55 0 012.15 0l3.152 3.034C13.78 9.301 13.094 11 11.7 11h-.402zM8.339 6.2a.3.3 0 01.416 0l3.152 3.034a.3.3 0 01-.208.516h-1.652v3.75a1.5 1.5 0 01-3 0V9.75H5.394a.3.3 0 01-.208-.516L8.339 6.2z",fill:"currentColor"});function re(){return(re=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var te=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.5 2.75a1.75 1.75 0 11-3.5 0 1.75 1.75 0 013.5 0zm0 5a1.75 1.75 0 11-3.5 0 1.75 1.75 0 013.5 0zM7.75 14.5a1.75 1.75 0 100-3.5 1.75 1.75 0 000 3.5z",fill:"currentColor"});function ne(){return(ne=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var ee=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 2.008c3.934 0 6.473 3.129 7.455 4.583l.043.064C15.713 6.97 16 7.391 16 8s-.287 1.03-.502 1.345l-.043.064c-.982 1.454-3.521 4.583-7.455 4.583S1.527 10.863.545 9.41l-.043-.064C.287 9.03 0 8.609 0 8s.287-1.03.502-1.345l.043-.064C1.527 5.137 4.066 2.008 8 2.008zM9.13 4.13A5.147 5.147 0 008 4.005C5.75 4.005 3.927 5.794 3.927 8c0 2.206 1.824 3.995 4.073 3.995 2.25 0 4.073-1.789 4.073-3.995 0-2.206-1.824-3.995-4.073-3.995.378 0 .756.045 1.13.126zM8 10.996c1.687 0 3.055-1.341 3.055-2.996S9.687 5.004 8 5.004 4.945 6.345 4.945 8 6.313 10.996 8 10.996z",fill:"currentColor"});function ae(){return(ae=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var le=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14.601 1.266a1.03 1.03 0 00-1.433.049L1.704 13.486a.987.987 0 00.062 1.407 1.03 1.03 0 001.433-.049l1.793-1.904A7.348 7.348 0 008 13.587c3.934 0 6.473-3.133 7.455-4.59l.043-.063c.215-.316.502-.737.502-1.347s-.287-1.03-.502-1.346l-.043-.065a12.85 12.85 0 00-1.949-2.275l1.157-1.228a.987.987 0 00-.062-1.407zm-2.93 4.585l-.764.81c.096.292.148.603.148.926 0 1.657-1.368 3-3.055 3-.246 0-.485-.028-.714-.082l-.763.81c.458.176.956.272 1.477.272 2.25 0 4.073-1.79 4.073-4 0-.622-.145-1.211-.403-1.736zM8 1.587c.919 0 1.762.171 2.526.452L8.98 3.68A5.13 5.13 0 008 3.587c-2.25 0-4.073 1.79-4.073 4 0 .435.07.853.201 1.245l-1.985 2.107A13.06 13.06 0 01.545 8.998l-.043-.064C.287 8.618 0 8.197 0 7.587s.287-1.03.502-1.346l.043-.065C1.527 4.72 4.066 1.587 8 1.587zm0 2c.327 0 .654.034.978.095l-.016.017A4.155 4.155 0 008 3.587zm0 1c.041 0 .083 0 .124.002L4.966 7.942a2.978 2.978 0 01-.02-.355c0-1.657 1.367-3 3.054-3z",fill:"currentColor"});function oe(){return(oe=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var ie=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.864 2.514a.983.983 0 00-1.728 0L1.122 13.539A.987.987 0 001.986 15h12.028a.987.987 0 00.864-1.461L8.864 2.514zM7 6a1 1 0 012 0v4a1 1 0 11-2 0V6zm2 7a1 1 0 11-2 0 1 1 0 012 0z",fill:"currentColor"});function he(){return(he=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var ve=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.203 3.404a1 1 0 00-1.414 0L8.314 5.879 5.839 3.404a1 1 0 00-1.414 0l-.707.707a1 1 0 000 1.414L6.192 8l-2.474 2.475a1 1 0 000 1.414l.707.707a1 1 0 001.414 0l2.475-2.475 2.475 2.475a1 1 0 001.414 0l.707-.707a1 1 0 000-1.414L10.435 8l2.475-2.475a1 1 0 000-1.414l-.707-.707z",fill:"currentColor"});function ce(){return(ce=Object.assign||function(r){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var e in n)Object.prototype.hasOwnProperty.call(n,e)&&(r[e]=n[e])}return r}).apply(this,arguments)}var ue=r("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 15A7 7 0 108 1a7 7 0 000 14zm1.414-9.828a1 1 0 111.414 1.414L9.414 8l1.414 1.414a1 1 0 11-1.414 1.414L8 9.414l-1.414 1.414a1 1 0 11-1.414-1.414L6.586 8 5.172 6.586a1 1 0 011.414-1.414L8 6.586l1.414-1.414z",fill:"currentColor"});var pe={ActivityFeed:function(t){return r("svg",g({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),d)},AddFile:function(t){return r("svg",y({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),O)},Apps:function(t){return r("svg",b({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),z)},Array:function(t){return r("svg",j({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),x)},ArrowDown:function(t){return r("svg",M({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),C)},ArrowLeft:function(t){return r("svg",m({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),V)},ArrowRight:function(t){return r("svg",H({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),P)},ArrowUp:function(t){return r("svg",R({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),B)},Beaker:function(t){return r("svg",L({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),A)},Bell:function(t){return r("svg",S({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),k)},Building:function(t){return r("svg",D({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),U)},Bulb:function(t){return r("svg",_({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),E,N)},Calendar:function(t){return r("svg",W({width:18,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),F)},CaretDown:function(t){return r("svg",I({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),T)},CaretLeft:function(t){return r("svg",G({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),X)},CaretRight:function(t){return r("svg",$({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),q)},CaretUp:function(t){return r("svg",K({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Q)},Charts:function(t){return r("svg",Z({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),J)},Checkmark:function(t){return r("svg",Y({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),rr)},CheckmarkWithCircle:function(t){return r("svg",tr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),nr)},ChevronDown:function(t){return r("svg",er({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),ar)},ChevronLeft:function(t){return r("svg",lr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),or)},ChevronRight:function(t){return r("svg",ir({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),hr)},ChevronUp:function(t){return r("svg",vr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),cr)},Clock:function(t){return r("svg",ur({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),pr)},ClockWithArrow:function(t){return r("svg",fr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),sr,wr)},Clone:function(t){return r("svg",gr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),dr,yr)},Cloud:function(t){return r("svg",Or({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),br)},Code:function(t){return r("svg",zr({width:16,height:16,fill:"none",viewBox:"0 0 16 16"},t),jr)},Connect:function(t){return r("svg",xr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Mr)},Copy:function(t){return r("svg",Cr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),mr)},CreditCard:function(t){return r("svg",Vr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Hr)},CurlyBraces:function(t){return r("svg",Pr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Rr)},Database:function(t){return r("svg",Br({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Lr,Ar,Sr)},Diagram:function(t){return r("svg",kr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Dr)},Disconnect:function(t){return r("svg",Ur({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),_r)},Download:function(t){return r("svg",Er({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Nr)},Edit:function(t){return r("svg",Wr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Fr,Ir)},Ellipsis:function(t){return r("svg",Tr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Gr)},Export:function(t){return r("svg",Xr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),$r,qr)},Favorite:function(t){return r("svg",Kr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Qr)},File:function(t){return r("svg",Zr({width:16,height:16,fill:"none",viewBox:"0 0 16 16"},t),Jr,Yr)},Filter:function(t){return r("svg",rt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),tt)},FullScreenEnter:function(t){return r("svg",nt({width:16,height:16,fill:"none",viewBox:"0 0 16 16"},t),et)},FullScreenExit:function(t){return r("svg",at({width:16,height:16,fill:"none",viewBox:"0 0 16 16"},t),lt)},Folder:function(t){return r("svg",ot({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),it)},GlobeAmericas:function(t){return r("svg",ht({width:16,height:16,fill:"none",viewBox:"0 0 16 16"},t),vt)},GovernmentBuilding:function(t){return r("svg",ct({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),ut,pt)},Home:function(t){return r("svg",ft({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),st,wt)},ImportantWithCircle:function(t){return r("svg",gt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),dt)},InfoWithCircle:function(t){return r("svg",yt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Ot)},InviteUser:function(t){return r("svg",bt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),zt,jt)},Key:function(t){return r("svg",xt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Mt)},Laptop:function(t){return r("svg",Ct({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),mt,Vt)},Lock:function(t){return r("svg",Ht({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Pt)},MagnifyingGlass:function(t){return r("svg",Rt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Bt)},Megaphone:function(t){return r("svg",Lt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),At)},Menu:function(t){return r("svg",St({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),kt)},Minus:function(t){return r("svg",Dt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Ut)},NotAllowed:function(t){return r("svg",_t({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Et)},Note:function(t){return r("svg",Nt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Wt,Ft)},OpenNewTab:function(t){return r("svg",It({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Tt,Gt)},Pause:function(t){return r("svg",Xt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),$t)},Person:function(t){return r("svg",qt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Kt,Qt)},PersonGroup:function(t){return r("svg",Zt({width:16,height:16,fill:"none",viewBox:"0 0 16 16"},t),Jt)},PersonWithLock:function(t){return r("svg",Yt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),rn,tn)},Play:function(t){return r("svg",nn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),en)},Plus:function(t){return r("svg",an({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),ln)},PlusWithCircle:function(t){return r("svg",on({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),hn)},QuestionMarkWithCircle:function(t){return r("svg",vn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),cn)},Redo:function(t){return r("svg",un({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),pn)},Refresh:function(t){return r("svg",fn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),sn)},ReplicaSet:function(t){return r("svg",wn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),gn)},Save:function(t){return r("svg",dn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),yn,On)},Serverless:function(t){return r("svg",bn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),zn)},ShardedCluster:function(t){return r("svg",jn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),xn)},Settings:function(t){return r("svg",Mn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Cn)},Shell:function(t){return r("svg",mn({width:16,height:16,fill:"none",viewBox:"0 0 16 16"},t),Vn)},SortAscending:function(t){return r("svg",Hn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Pn)},SortDescending:function(t){return r("svg",Rn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Bn)},Stitch:function(t){return r("svg",Ln({width:16,height:16,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),An)},Support:function(t){return r("svg",Sn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),kn)},Table:function(t){return r("svg",Dn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Un)},TimeSeries:function(t){return r("svg",_n({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),En)},Trash:function(t){return r("svg",Nn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Wn)},Undo:function(t){return r("svg",Fn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),In)},University:function(t){return r("svg",Tn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Gn)},Unlock:function(t){return r("svg",Xn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),$n)},Unsorted:function(t){return r("svg",qn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Kn)},UpDownCarets:function(t){return r("svg",Qn({width:16,height:16,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Zn)},Upload:function(t){return r("svg",Jn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),Yn)},VerticalEllipsis:function(t){return r("svg",re({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),te)},Visibility:function(t){return r("svg",ne({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),ee)},VisibilityOff:function(t){return r("svg",ae({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),le)},Warning:function(t){return r("svg",oe({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),ie)},X:function(t){return r("svg",he({width:17,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),ve)},XWithCircle:function(t){return r("svg",ce({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},t),ue)}},fe=Object.keys(pe).reduce((function(r,t){return r[t]=w(t,pe[t]),r}),{}),se=Object.freeze({__proto__:null});function we(r){return null!=r&&"object"===l(r)&&"type"in r&&!0===r.type.isGlyph}var ge=f(fe);export default ge;export{se as LGGlyph,v as Size,w as createGlyphComponent,f as createIconComponent,fe as glyphs,we as isComponentGlyph};
|
|
2
2
|
//# sourceMappingURL=index.js.map
|