@uva-glass/component-library 3.6.1 → 3.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/dist/assets/FormField.css +1 -1
- package/dist/components/FormField/FormField.d.ts +3 -1
- package/dist/components/FormField/FormField.js +15 -13
- package/dist/components/FormField/FormField.js.map +1 -1
- package/dist/components/FormField/FormField.stories.js +19 -15
- package/dist/components/FormField/FormField.stories.js.map +1 -1
- package/dist/components/Icon/icons/index.d.ts +12 -0
- package/dist/components/Icon/icons/index.js +45 -35
- package/dist/components/Icon/icons/index.js.map +1 -1
- package/package.json +7 -7
|
@@ -1 +1 @@
|
|
|
1
|
-
._form-
|
|
1
|
+
._form-field_hcyqx_1{display:flex;flex-direction:column;gap:.5rem 1rem}._form-field--outerspace_hcyqx_7{margin:1.5rem 0}._form-field--inline_hcyqx_11{align-items:center;flex-direction:row}._form-field--align-start_hcyqx_16{align-items:flex-start}
|
|
@@ -4,6 +4,8 @@ export interface FormFieldProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
4
4
|
outerSpace?: boolean;
|
|
5
5
|
/** true if the label and input field should be rendered on the same row; otherwise, false. The default is false. */
|
|
6
6
|
inline?: boolean;
|
|
7
|
+
/** to be used in combination with 'inline'; true if the label and input field should be rendered on start of the same row; otherwise, false. The default is false. */
|
|
8
|
+
alignStart?: boolean;
|
|
7
9
|
}
|
|
8
10
|
/** Represents an element to wrap a label and input field. */
|
|
9
|
-
export declare const FormField: ({ children, outerSpace, inline, ...rest }: PropsWithChildren<FormFieldProps>) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export declare const FormField: ({ children, outerSpace, inline, alignStart, ...rest }: PropsWithChildren<FormFieldProps>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,21 +1,23 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { c as
|
|
3
|
-
import '../../assets/FormField.css';const
|
|
4
|
-
"form-field": "_form-
|
|
5
|
-
"form-field--outerspace": "_form-field--
|
|
6
|
-
"form-field--inline": "_form-field--
|
|
7
|
-
|
|
1
|
+
import { jsx as m } from "react/jsx-runtime";
|
|
2
|
+
import { c as s } from "../../clsx-OuTLNxxd.js";
|
|
3
|
+
import '../../assets/FormField.css';const f = {
|
|
4
|
+
"form-field": "_form-field_hcyqx_1",
|
|
5
|
+
"form-field--outerspace": "_form-field--outerspace_hcyqx_7",
|
|
6
|
+
"form-field--inline": "_form-field--inline_hcyqx_11",
|
|
7
|
+
"form-field--align-start": "_form-field--align-start_hcyqx_16"
|
|
8
|
+
}, a = ({ children: e, outerSpace: i, inline: r, alignStart: o, ...l }) => /* @__PURE__ */ m(
|
|
8
9
|
"div",
|
|
9
10
|
{
|
|
10
|
-
className:
|
|
11
|
-
[
|
|
12
|
-
[
|
|
11
|
+
className: s(f["form-field"], {
|
|
12
|
+
[f["form-field--outerspace"]]: i,
|
|
13
|
+
[f["form-field--inline"]]: r,
|
|
14
|
+
[f["form-field--align-start"]]: o
|
|
13
15
|
}),
|
|
14
|
-
...
|
|
15
|
-
children:
|
|
16
|
+
...l,
|
|
17
|
+
children: e
|
|
16
18
|
}
|
|
17
19
|
);
|
|
18
20
|
export {
|
|
19
|
-
|
|
21
|
+
a as FormField
|
|
20
22
|
};
|
|
21
23
|
//# sourceMappingURL=FormField.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FormField.js","sources":["../../../src/components/FormField/FormField.tsx"],"sourcesContent":["import classNames from 'clsx';\n\nimport type { HTMLAttributes, PropsWithChildren } from 'react';\n\nimport styles from './FormField.module.css';\n\nexport interface FormFieldProps extends HTMLAttributes<HTMLDivElement> {\n /** true if a margin at the top and bottom should be added; otherwise, false. The default is false. */\n outerSpace?: boolean;\n /** true if the label and input field should be rendered on the same row; otherwise, false. The default is false. */\n inline?: boolean;\n}\n\n/** Represents an element to wrap a label and input field. */\nexport const FormField = ({ children, outerSpace, inline, ...rest }: PropsWithChildren<FormFieldProps>) => (\n <div\n className={classNames(styles['form-field'], {\n [styles['form-field--outerspace']]: outerSpace,\n [styles['form-field--inline']]: inline,\n })}\n {...rest}\n >\n {children}\n </div>\n);\n"],"names":["FormField","children","outerSpace","inline","rest","jsx","classNames","styles"],"mappings":"
|
|
1
|
+
{"version":3,"file":"FormField.js","sources":["../../../src/components/FormField/FormField.tsx"],"sourcesContent":["import classNames from 'clsx';\n\nimport type { HTMLAttributes, PropsWithChildren } from 'react';\n\nimport styles from './FormField.module.css';\n\nexport interface FormFieldProps extends HTMLAttributes<HTMLDivElement> {\n /** true if a margin at the top and bottom should be added; otherwise, false. The default is false. */\n outerSpace?: boolean;\n /** true if the label and input field should be rendered on the same row; otherwise, false. The default is false. */\n inline?: boolean;\n /** to be used in combination with 'inline'; true if the label and input field should be rendered on start of the same row; otherwise, false. The default is false. */\n alignStart?: boolean;\n}\n\n/** Represents an element to wrap a label and input field. */\nexport const FormField = ({ children, outerSpace, inline, alignStart, ...rest }: PropsWithChildren<FormFieldProps>) => (\n <div\n className={classNames(styles['form-field'], {\n [styles['form-field--outerspace']]: outerSpace,\n [styles['form-field--inline']]: inline,\n [styles['form-field--align-start']]: alignStart,\n })}\n {...rest}\n >\n {children}\n </div>\n);\n"],"names":["FormField","children","outerSpace","inline","alignStart","rest","jsx","classNames","styles"],"mappings":";;;;;;;GAgBaA,IAAY,CAAC,EAAE,UAAAC,GAAU,YAAAC,GAAY,QAAAC,GAAQ,YAAAC,GAAY,GAAGC,EAAA,MACvE,gBAAAC;AAAA,EAAC;AAAA,EAAA;AAAA,IACC,WAAWC,EAAWC,EAAO,YAAY,GAAG;AAAA,MAC1C,CAACA,EAAO,wBAAwB,CAAC,GAAGN;AAAA,MACpC,CAACM,EAAO,oBAAoB,CAAC,GAAGL;AAAA,MAChC,CAACK,EAAO,yBAAyB,CAAC,GAAGJ;AAAA,IAAA,CACtC;AAAA,IACA,GAAGC;AAAA,IAEH,UAAAJ;AAAA,EAAA;AACH;"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { jsxs as
|
|
1
|
+
import { jsxs as l, jsx as e } from "react/jsx-runtime";
|
|
2
2
|
import { FormField as o } from "./FormField.js";
|
|
3
3
|
import { InputField as t } from "../InputField/InputField.js";
|
|
4
|
-
import { Label as
|
|
5
|
-
import { Container as
|
|
6
|
-
const
|
|
4
|
+
import { Label as n } from "../Label/Label.js";
|
|
5
|
+
import { Container as a } from "../../storyComponents/Container/Container.js";
|
|
6
|
+
const i = "<FormField>{children}</FormField>", h = {
|
|
7
7
|
title: "Atoms/FormField",
|
|
8
8
|
component: o,
|
|
9
9
|
argTypes: {
|
|
@@ -12,30 +12,34 @@ const a = "<FormField>{children}</FormField>", b = {
|
|
|
12
12
|
},
|
|
13
13
|
inline: {
|
|
14
14
|
control: "boolean"
|
|
15
|
+
},
|
|
16
|
+
alignStart: {
|
|
17
|
+
control: "boolean"
|
|
15
18
|
}
|
|
16
19
|
},
|
|
17
20
|
parameters: {
|
|
18
21
|
inspectComponent: o,
|
|
19
|
-
codeString:
|
|
22
|
+
codeString: i
|
|
20
23
|
}
|
|
21
|
-
}, m = (
|
|
22
|
-
/* @__PURE__ */
|
|
23
|
-
/* @__PURE__ */ e(
|
|
24
|
+
}, m = (r) => /* @__PURE__ */ l(a, { children: [
|
|
25
|
+
/* @__PURE__ */ l(o, { ...r, children: [
|
|
26
|
+
/* @__PURE__ */ e(n, { htmlFor: "d6aa53fd", children: "Example label" }),
|
|
24
27
|
/* @__PURE__ */ e(t, { id: "d6aa53fd" })
|
|
25
28
|
] }),
|
|
26
|
-
/* @__PURE__ */
|
|
27
|
-
/* @__PURE__ */ e(
|
|
29
|
+
/* @__PURE__ */ l(o, { ...r, children: [
|
|
30
|
+
/* @__PURE__ */ e(n, { htmlFor: "4e7a2f22", children: "Example very very very long label to display input alingment compared to label" }),
|
|
28
31
|
/* @__PURE__ */ e(t, { id: "4e7a2f22" })
|
|
29
32
|
] })
|
|
30
33
|
] }), d = {
|
|
31
34
|
outerSpace: !1,
|
|
32
|
-
inline: !1
|
|
33
|
-
|
|
34
|
-
|
|
35
|
+
inline: !1,
|
|
36
|
+
alignStart: !1
|
|
37
|
+
}, p = m.bind({});
|
|
38
|
+
p.args = {
|
|
35
39
|
...d
|
|
36
40
|
};
|
|
37
41
|
export {
|
|
38
|
-
|
|
39
|
-
|
|
42
|
+
p as FormFieldExample,
|
|
43
|
+
h as default
|
|
40
44
|
};
|
|
41
45
|
//# sourceMappingURL=FormField.stories.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FormField.stories.js","sources":["../../../src/components/FormField/FormField.stories.tsx"],"sourcesContent":["import type { Meta, StoryFn } from '@storybook/react';\nimport type { PropsWithChildren } from 'react';\nimport type { FormFieldProps } from './FormField';\n\nimport { FormField } from './FormField';\n\nimport { InputField } from 'components/InputField';\nimport { Label } from 'components/Label';\nimport { Container } from 'storyComponents/Container';\n\nconst codeString = '<FormField>{children}</FormField>';\n\n// eslint-disable-next-line import/no-default-export\nexport default {\n title: 'Atoms/FormField',\n component: FormField,\n argTypes: {\n outerSpace: {\n control: 'boolean',\n },\n inline: {\n control: 'boolean',\n },\n },\n parameters: {\n inspectComponent: FormField,\n codeString: codeString,\n },\n} as Meta<PropsWithChildren<FormFieldProps>>;\n\nconst Template: StoryFn<PropsWithChildren<FormFieldProps>> = (args) => (\n <Container>\n <FormField {...args}>\n <Label htmlFor=\"d6aa53fd\">Example label
|
|
1
|
+
{"version":3,"file":"FormField.stories.js","sources":["../../../src/components/FormField/FormField.stories.tsx"],"sourcesContent":["import type { Meta, StoryFn } from '@storybook/react';\nimport type { PropsWithChildren } from 'react';\nimport type { FormFieldProps } from './FormField';\n\nimport { FormField } from './FormField';\n\nimport { InputField } from 'components/InputField';\nimport { Label } from 'components/Label';\nimport { Container } from 'storyComponents/Container';\n\nconst codeString = '<FormField>{children}</FormField>';\n\n// eslint-disable-next-line import/no-default-export\nexport default {\n title: 'Atoms/FormField',\n component: FormField,\n argTypes: {\n outerSpace: {\n control: 'boolean',\n },\n inline: {\n control: 'boolean',\n },\n alignStart: {\n control: 'boolean',\n },\n },\n parameters: {\n inspectComponent: FormField,\n codeString: codeString,\n },\n} as Meta<PropsWithChildren<FormFieldProps>>;\n\nconst Template: StoryFn<PropsWithChildren<FormFieldProps>> = (args) => (\n <Container>\n <FormField {...args}>\n <Label htmlFor=\"d6aa53fd\">Example label</Label>\n <InputField id=\"d6aa53fd\" />\n </FormField>\n <FormField {...args}>\n <Label htmlFor=\"4e7a2f22\">Example very very very long label to display input alingment compared to label</Label>\n <InputField id=\"4e7a2f22\" />\n </FormField>\n </Container>\n);\n\nconst defaultArgs: Partial<PropsWithChildren<FormFieldProps>> = {\n outerSpace: false,\n inline: false,\n alignStart: false,\n};\n\nexport const FormFieldExample = Template.bind({});\nFormFieldExample.args = {\n ...defaultArgs,\n};\n"],"names":["codeString","FormField_stories","FormField","Template","args","jsxs","Container","jsx","Label","InputField","defaultArgs","FormFieldExample"],"mappings":";;;;;AAUA,MAAMA,IAAa,qCAGJC,IAAA;AAAA,EACb,OAAO;AAAA,EACP,WAAWC;AAAA,EACX,UAAU;AAAA,IACR,YAAY;AAAA,MACV,SAAS;AAAA,IACX;AAAA,IACA,QAAQ;AAAA,MACN,SAAS;AAAA,IACX;AAAA,IACA,YAAY;AAAA,MACV,SAAS;AAAA,IAAA;AAAA,EAEb;AAAA,EACA,YAAY;AAAA,IACV,kBAAkBA;AAAA,IAClB,YAAAF;AAAA,EAAA;AAEJ,GAEMG,IAAuD,CAACC,MAC5D,gBAAAC,EAACC,GACC,EAAA,UAAA;AAAA,EAAC,gBAAAD,EAAAH,GAAA,EAAW,GAAGE,GACb,UAAA;AAAA,IAAC,gBAAAG,EAAAC,GAAA,EAAM,SAAQ,YAAW,UAAa,iBAAA;AAAA,IACvC,gBAAAD,EAACE,GAAW,EAAA,IAAG,WAAW,CAAA;AAAA,EAAA,GAC5B;AAAA,EACA,gBAAAJ,EAACH,GAAW,EAAA,GAAGE,GACb,UAAA;AAAA,IAAC,gBAAAG,EAAAC,GAAA,EAAM,SAAQ,YAAW,UAA8E,kFAAA;AAAA,IACxG,gBAAAD,EAACE,GAAW,EAAA,IAAG,WAAW,CAAA;AAAA,EAAA,EAC5B,CAAA;AAAA,GACF,GAGIC,IAA0D;AAAA,EAC9D,YAAY;AAAA,EACZ,QAAQ;AAAA,EACR,YAAY;AACd,GAEaC,IAAmBR,EAAS,KAAK,CAAE,CAAA;AAChDQ,EAAiB,OAAO;AAAA,EACtB,GAAGD;AACL;"}
|
|
@@ -593,6 +593,18 @@ export declare const Icons: {
|
|
|
593
593
|
desc?: string;
|
|
594
594
|
descId?: string;
|
|
595
595
|
}>;
|
|
596
|
+
UserPlus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
597
|
+
title?: string;
|
|
598
|
+
titleId?: string;
|
|
599
|
+
desc?: string;
|
|
600
|
+
descId?: string;
|
|
601
|
+
}>;
|
|
602
|
+
UserPlusFill: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
603
|
+
title?: string;
|
|
604
|
+
titleId?: string;
|
|
605
|
+
desc?: string;
|
|
606
|
+
descId?: string;
|
|
607
|
+
}>;
|
|
596
608
|
Zero: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
597
609
|
title?: string;
|
|
598
610
|
titleId?: string;
|
|
@@ -71,15 +71,15 @@ const n = ({
|
|
|
71
71
|
title: l,
|
|
72
72
|
titleId: C,
|
|
73
73
|
...t
|
|
74
|
-
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6.75 2.25C7.16421 2.25 7.5 2.58579 7.5 3V4.5H16.5V3C16.5 2.58579 16.8358 2.25 17.25 2.25C17.6642 2.25 18 2.58579 18 3V4.5H18.75C20.4069 4.5 21.75 5.84315 21.75 7.5V18.75C21.75 20.4069 20.4069 21.75 18.75 21.75H5.25C3.59315 21.75 2.25 20.4069 2.25 18.75V7.5C2.25 5.84315 3.59315 4.5 5.25 4.5H6V3C6 2.58579 6.33579 2.25 6.75 2.25ZM5.25 6C4.42157 6 3.75 6.67157 3.75 7.5V8.65135C4.19126 8.39609 4.70357 8.25 5.25 8.25H18.75C19.2964 8.25 19.8087 8.39609 20.25 8.65135V7.5C20.25 6.67157 19.5784 6 18.75 6H5.25ZM20.25 11.25C20.25 10.4216 19.5784 9.75 18.75 9.75H5.25C4.42157 9.75 3.75 10.4216 3.75 11.25V18.75C3.75 19.5784 4.42157 20.25 5.25 20.25H18.75C19.5784 20.25 20.25 19.5784 20.25 18.75V11.25Z", fill: "currentcolor" })),
|
|
74
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6.75 2.25C7.16421 2.25 7.5 2.58579 7.5 3V4.5H16.5V3C16.5 2.58579 16.8358 2.25 17.25 2.25C17.6642 2.25 18 2.58579 18 3V4.5H18.75C20.4069 4.5 21.75 5.84315 21.75 7.5V18.75C21.75 20.4069 20.4069 21.75 18.75 21.75H5.25C3.59315 21.75 2.25 20.4069 2.25 18.75V7.5C2.25 5.84315 3.59315 4.5 5.25 4.5H6V3C6 2.58579 6.33579 2.25 6.75 2.25ZM5.25 6C4.42157 6 3.75 6.67157 3.75 7.5V8.65135C4.19126 8.39609 4.70357 8.25 5.25 8.25H18.75C19.2964 8.25 19.8087 8.39609 20.25 8.65135V7.5C20.25 6.67157 19.5784 6 18.75 6H5.25ZM20.25 11.25C20.25 10.4216 19.5784 9.75 18.75 9.75H5.25C4.42157 9.75 3.75 10.4216 3.75 11.25V18.75C3.75 19.5784 4.42157 20.25 5.25 20.25H18.75C19.5784 20.25 20.25 19.5784 20.25 18.75V11.25Z", fill: "currentcolor" })), H = ({
|
|
75
75
|
title: l,
|
|
76
76
|
titleId: C,
|
|
77
77
|
...t
|
|
78
|
-
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { d: "M19.054 6.32674C17.4593 4.7321 14.8739 4.7321 13.2793 6.32674L12.606 7.00018L13.6668 8.0607L14.34 7.38733C15.3488 6.37854 16.9845 6.37857 17.9933 7.3874L18.2793 7.67335C19.2881 8.68221 19.2881 10.3179 18.2793 11.3267L15.4933 14.1127C14.4845 15.1215 12.8488 15.1215 11.8399 14.1127L11.554 13.8267C11.1313 13.404 10.8864 12.8733 10.8175 12.3235L10.7243 11.5793L9.2359 11.7657L9.32913 12.5099C9.43798 13.3789 9.82663 14.2207 10.4933 14.8874L10.7793 15.1734C12.3739 16.768 14.9593 16.768 16.554 15.1734L19.3399 12.3874C20.9346 10.7928 20.9346 8.20733 19.3399 6.61269L19.054 6.32674Z", fill: "currentColor" }), /* @__PURE__ */ e.createElement("path", { d: "M13.2207 9.66011C11.6261 8.06547 9.04063 8.06547 7.44599 9.66011L4.66003 12.4461C3.06539 14.0407 3.06539 16.6261 4.66003 18.2208L4.94599 18.5067C6.54063 20.1014 9.12607 20.1013 10.7207 18.5067L11.394 17.8334L10.3333 16.7728L9.66001 17.4461C8.65116 18.4549 7.0155 18.4549 6.00665 17.4461L5.72069 17.1601C4.71184 16.1513 4.71184 14.5156 5.72069 13.5067L8.50665 10.7208C9.5155 9.71192 11.1512 9.71192 12.16 10.7208L12.446 11.0067C12.8687 11.4294 13.1136 11.9601 13.1825 12.51L13.2757 13.2542L14.764 13.0677L14.6708 12.3235C14.562 11.4546 14.1733 10.6127 13.5066 9.94607L13.2207 9.66011Z", fill: "currentColor" })),
|
|
78
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { d: "M19.054 6.32674C17.4593 4.7321 14.8739 4.7321 13.2793 6.32674L12.606 7.00018L13.6668 8.0607L14.34 7.38733C15.3488 6.37854 16.9845 6.37857 17.9933 7.3874L18.2793 7.67335C19.2881 8.68221 19.2881 10.3179 18.2793 11.3267L15.4933 14.1127C14.4845 15.1215 12.8488 15.1215 11.8399 14.1127L11.554 13.8267C11.1313 13.404 10.8864 12.8733 10.8175 12.3235L10.7243 11.5793L9.2359 11.7657L9.32913 12.5099C9.43798 13.3789 9.82663 14.2207 10.4933 14.8874L10.7793 15.1734C12.3739 16.768 14.9593 16.768 16.554 15.1734L19.3399 12.3874C20.9346 10.7928 20.9346 8.20733 19.3399 6.61269L19.054 6.32674Z", fill: "currentColor" }), /* @__PURE__ */ e.createElement("path", { d: "M13.2207 9.66011C11.6261 8.06547 9.04063 8.06547 7.44599 9.66011L4.66003 12.4461C3.06539 14.0407 3.06539 16.6261 4.66003 18.2208L4.94599 18.5067C6.54063 20.1014 9.12607 20.1013 10.7207 18.5067L11.394 17.8334L10.3333 16.7728L9.66001 17.4461C8.65116 18.4549 7.0155 18.4549 6.00665 17.4461L5.72069 17.1601C4.71184 16.1513 4.71184 14.5156 5.72069 13.5067L8.50665 10.7208C9.5155 9.71192 11.1512 9.71192 12.16 10.7208L12.446 11.0067C12.8687 11.4294 13.1136 11.9601 13.1825 12.51L13.2757 13.2542L14.764 13.0677L14.6708 12.3235C14.562 11.4546 14.1733 10.6127 13.5066 9.94607L13.2207 9.66011Z", fill: "currentColor" })), V = ({
|
|
79
79
|
title: l,
|
|
80
80
|
titleId: C,
|
|
81
81
|
...t
|
|
82
|
-
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M20.5401 3.68986C21.4017 4.26427 21.6345 5.4284 21.0601 6.29002L12.0601 19.79C11.7485 20.2574 11.2438 20.5605 10.6848 20.6158C10.1258 20.6712 9.57138 20.473 9.17417 20.0758L3.17417 14.0758C2.44194 13.3435 2.44194 12.1564 3.17417 11.4241C3.90641 10.6919 5.09359 10.6919 5.82583 11.4241L10.2086 15.8069L17.9399 4.20989C18.5143 3.34828 19.6784 3.11545 20.5401 3.68986Z", fill: "currentColor" })),
|
|
82
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M20.5401 3.68986C21.4017 4.26427 21.6345 5.4284 21.0601 6.29002L12.0601 19.79C11.7485 20.2574 11.2438 20.5605 10.6848 20.6158C10.1258 20.6712 9.57138 20.473 9.17417 20.0758L3.17417 14.0758C2.44194 13.3435 2.44194 12.1564 3.17417 11.4241C3.90641 10.6919 5.09359 10.6919 5.82583 11.4241L10.2086 15.8069L17.9399 4.20989C18.5143 3.34828 19.6784 3.11545 20.5401 3.68986Z", fill: "currentColor" })), f = ({
|
|
83
83
|
title: l,
|
|
84
84
|
titleId: C,
|
|
85
85
|
...t
|
|
@@ -135,15 +135,15 @@ const n = ({
|
|
|
135
135
|
title: l,
|
|
136
136
|
titleId: C,
|
|
137
137
|
...t
|
|
138
|
-
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { d: "M20.25 6.375C20.25 8.65317 16.5563 10.5 12 10.5C7.44365 10.5 3.75 8.65317 3.75 6.375M20.25 6.375C20.25 4.09683 16.5563 2.25 12 2.25C7.44365 2.25 3.75 4.09683 3.75 6.375M20.25 6.375V17.625C20.25 19.9032 16.5563 21.75 12 21.75C7.44365 21.75 3.75 19.9032 3.75 17.625V6.375M20.25 6.375V10.125M3.75 6.375V10.125M20.25 10.125V13.875C20.25 16.1532 16.5563 18 12 18C7.44365 18 3.75 16.1532 3.75 13.875V10.125M20.25 10.125C20.25 12.4032 16.5563 14.25 12 14.25C7.44365 14.25 3.75 12.4032 3.75 10.125", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })),
|
|
138
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { d: "M20.25 6.375C20.25 8.65317 16.5563 10.5 12 10.5C7.44365 10.5 3.75 8.65317 3.75 6.375M20.25 6.375C20.25 4.09683 16.5563 2.25 12 2.25C7.44365 2.25 3.75 4.09683 3.75 6.375M20.25 6.375V17.625C20.25 19.9032 16.5563 21.75 12 21.75C7.44365 21.75 3.75 19.9032 3.75 17.625V6.375M20.25 6.375V10.125M3.75 6.375V10.125M20.25 10.125V13.875C20.25 16.1532 16.5563 18 12 18C7.44365 18 3.75 16.1532 3.75 13.875V10.125M20.25 10.125C20.25 12.4032 16.5563 14.25 12 14.25C7.44365 14.25 3.75 12.4032 3.75 10.125", stroke: "currentcolor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })), U = ({
|
|
139
139
|
title: l,
|
|
140
140
|
titleId: C,
|
|
141
141
|
...t
|
|
142
|
-
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 3.75C9.81196 3.75 7.71354 4.61919 6.16637 6.16637C4.61919 7.71354 3.75 9.81196 3.75 12C3.75 13.0834 3.96339 14.1562 4.37799 15.1571C4.79259 16.1581 5.40029 17.0675 6.16637 17.8336C6.93245 18.5997 7.84193 19.2074 8.84286 19.622C9.8438 20.0366 10.9166 20.25 12 20.25C13.0834 20.25 14.1562 20.0366 15.1571 19.622C16.1581 19.2074 17.0675 18.5997 17.8336 17.8336C18.5997 17.0675 19.2074 16.1581 19.622 15.1571C20.0366 14.1562 20.25 13.0834 20.25 12C20.25 9.81196 19.3808 7.71354 17.8336 6.16637C16.2865 4.61919 14.188 3.75 12 3.75ZM5.10571 5.10571C6.93419 3.27723 9.41414 2.25 12 2.25C14.5859 2.25 17.0658 3.27723 18.8943 5.10571C20.7228 6.93419 21.75 9.41414 21.75 12C21.75 13.2804 21.4978 14.5482 21.0078 15.7312C20.5178 16.9141 19.7997 17.9889 18.8943 18.8943C17.9889 19.7997 16.9141 20.5178 15.7312 21.0078C14.5482 21.4978 13.2804 21.75 12 21.75C10.7196 21.75 9.45176 21.4978 8.26884 21.0078C7.08591 20.5178 6.01108 19.7997 5.10571 18.8943C4.20034 17.9889 3.48216 16.9141 2.99217 15.7312C2.50219 14.5482 2.25 13.2804 2.25 12C2.25 9.41414 3.27723 6.93419 5.10571 5.10571ZM12 5.25C12.4142 5.25 12.75 5.58579 12.75 6V11.25H16.5C16.9142 11.25 17.25 11.5858 17.25 12C17.25 12.4142 16.9142 12.75 16.5 12.75H12C11.5858 12.75 11.25 12.4142 11.25 12V6C11.25 5.58579 11.5858 5.25 12 5.25Z", fill: "currentcolor" })),
|
|
142
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 3.75C9.81196 3.75 7.71354 4.61919 6.16637 6.16637C4.61919 7.71354 3.75 9.81196 3.75 12C3.75 13.0834 3.96339 14.1562 4.37799 15.1571C4.79259 16.1581 5.40029 17.0675 6.16637 17.8336C6.93245 18.5997 7.84193 19.2074 8.84286 19.622C9.8438 20.0366 10.9166 20.25 12 20.25C13.0834 20.25 14.1562 20.0366 15.1571 19.622C16.1581 19.2074 17.0675 18.5997 17.8336 17.8336C18.5997 17.0675 19.2074 16.1581 19.622 15.1571C20.0366 14.1562 20.25 13.0834 20.25 12C20.25 9.81196 19.3808 7.71354 17.8336 6.16637C16.2865 4.61919 14.188 3.75 12 3.75ZM5.10571 5.10571C6.93419 3.27723 9.41414 2.25 12 2.25C14.5859 2.25 17.0658 3.27723 18.8943 5.10571C20.7228 6.93419 21.75 9.41414 21.75 12C21.75 13.2804 21.4978 14.5482 21.0078 15.7312C20.5178 16.9141 19.7997 17.9889 18.8943 18.8943C17.9889 19.7997 16.9141 20.5178 15.7312 21.0078C14.5482 21.4978 13.2804 21.75 12 21.75C10.7196 21.75 9.45176 21.4978 8.26884 21.0078C7.08591 20.5178 6.01108 19.7997 5.10571 18.8943C4.20034 17.9889 3.48216 16.9141 2.99217 15.7312C2.50219 14.5482 2.25 13.2804 2.25 12C2.25 9.41414 3.27723 6.93419 5.10571 5.10571ZM12 5.25C12.4142 5.25 12.75 5.58579 12.75 6V11.25H16.5C16.9142 11.25 17.25 11.5858 17.25 12C17.25 12.4142 16.9142 12.75 16.5 12.75H12C11.5858 12.75 11.25 12.4142 11.25 12V6C11.25 5.58579 11.5858 5.25 12 5.25Z", fill: "currentcolor" })), j = ({
|
|
143
143
|
title: l,
|
|
144
144
|
titleId: C,
|
|
145
145
|
...t
|
|
146
|
-
}) => /* @__PURE__ */ e.createElement("svg", { width: 16, height: 16, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.0001 14.4001C9.69748 14.4001 11.3253 13.7258 12.5256 12.5256C13.7258 11.3253 14.4001 9.69748 14.4001 8.0001C14.4001 6.30271 13.7258 4.67485 12.5256 3.47461C11.3253 2.27438 9.69748 1.6001 8.0001 1.6001C6.30271 1.6001 4.67485 2.27438 3.47461 3.47461C2.27438 4.67485 1.6001 6.30271 1.6001 8.0001C1.6001 9.69748 2.27438 11.3253 3.47461 12.5256C4.67485 13.7258 6.30271 14.4001 8.0001 14.4001ZM8.6001 4.0001C8.6001 3.84097 8.53688 3.68836 8.42436 3.57583C8.31184 3.46331 8.15923 3.4001 8.0001 3.4001C7.84097 3.4001 7.68836 3.46331 7.57583 3.57583C7.46331 3.68836 7.4001 3.84097 7.4001 4.0001V8.0001C7.4001 8.3313 7.6689 8.6001 8.0001 8.6001H11.2001C11.3592 8.6001 11.5118 8.53688 11.6244 8.42436C11.7369 8.31184 11.8001 8.15923 11.8001 8.0001C11.8001 7.84097 11.7369 7.68836 11.6244 7.57583C11.5118 7.46331 11.3592 7.4001 11.2001 7.4001H8.6001V4.0001Z", fill: "currentcolor" })),
|
|
146
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 16, height: 16, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.0001 14.4001C9.69748 14.4001 11.3253 13.7258 12.5256 12.5256C13.7258 11.3253 14.4001 9.69748 14.4001 8.0001C14.4001 6.30271 13.7258 4.67485 12.5256 3.47461C11.3253 2.27438 9.69748 1.6001 8.0001 1.6001C6.30271 1.6001 4.67485 2.27438 3.47461 3.47461C2.27438 4.67485 1.6001 6.30271 1.6001 8.0001C1.6001 9.69748 2.27438 11.3253 3.47461 12.5256C4.67485 13.7258 6.30271 14.4001 8.0001 14.4001ZM8.6001 4.0001C8.6001 3.84097 8.53688 3.68836 8.42436 3.57583C8.31184 3.46331 8.15923 3.4001 8.0001 3.4001C7.84097 3.4001 7.68836 3.46331 7.57583 3.57583C7.46331 3.68836 7.4001 3.84097 7.4001 4.0001V8.0001C7.4001 8.3313 7.6689 8.6001 8.0001 8.6001H11.2001C11.3592 8.6001 11.5118 8.53688 11.6244 8.42436C11.7369 8.31184 11.8001 8.15923 11.8001 8.0001C11.8001 7.84097 11.7369 7.68836 11.6244 7.57583C11.5118 7.46331 11.3592 7.4001 11.2001 7.4001H8.6001V4.0001Z", fill: "currentcolor" })), O = ({
|
|
147
147
|
title: l,
|
|
148
148
|
titleId: C,
|
|
149
149
|
...t
|
|
@@ -151,11 +151,11 @@ const n = ({
|
|
|
151
151
|
title: l,
|
|
152
152
|
titleId: C,
|
|
153
153
|
...t
|
|
154
|
-
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5.47007 5.47003C5.6107 5.32958 5.80132 5.25069 6.00007 5.25069C6.19882 5.25069 6.38945 5.32958 6.53007 5.47003L12.0001 10.94L17.4701 5.47003C17.5387 5.39634 17.6215 5.33724 17.7135 5.29625C17.8055 5.25526 17.9048 5.23322 18.0056 5.23144C18.1063 5.22966 18.2063 5.24819 18.2997 5.28591C18.3931 5.32363 18.4779 5.37977 18.5491 5.45099C18.6203 5.52221 18.6765 5.60705 18.7142 5.70043C18.7519 5.79382 18.7704 5.89385 18.7687 5.99455C18.7669 6.09526 18.7448 6.19457 18.7039 6.28657C18.6629 6.37857 18.6038 6.46137 18.5301 6.53003L13.0601 12L18.5301 17.47C18.6038 17.5387 18.6629 17.6215 18.7039 17.7135C18.7448 17.8055 18.7669 17.9048 18.7687 18.0055C18.7704 18.1062 18.7519 18.2062 18.7142 18.2996C18.6765 18.393 18.6203 18.4779 18.5491 18.5491C18.4779 18.6203 18.3931 18.6764 18.2997 18.7142C18.2063 18.7519 18.1063 18.7704 18.0056 18.7686C17.9048 18.7668 17.8055 18.7448 17.7135 18.7038C17.6215 18.6628 17.5387 18.6037 17.4701 18.53L12.0001 13.06L6.53007 18.53C6.3879 18.6625 6.19985 18.7346 6.00555 18.7312C5.81125 18.7278 5.62586 18.6491 5.48845 18.5117C5.35104 18.3742 5.27233 18.1889 5.2689 17.9946C5.26547 17.8003 5.33759 17.6122 5.47007 17.47L10.9401 12L5.47007 6.53003C5.32962 6.38941 5.25073 6.19878 5.25073 6.00003C5.25073 5.80128 5.32962 5.61066 5.47007 5.47003Z", fill: "currentcolor" })),
|
|
154
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5.47007 5.47003C5.6107 5.32958 5.80132 5.25069 6.00007 5.25069C6.19882 5.25069 6.38945 5.32958 6.53007 5.47003L12.0001 10.94L17.4701 5.47003C17.5387 5.39634 17.6215 5.33724 17.7135 5.29625C17.8055 5.25526 17.9048 5.23322 18.0056 5.23144C18.1063 5.22966 18.2063 5.24819 18.2997 5.28591C18.3931 5.32363 18.4779 5.37977 18.5491 5.45099C18.6203 5.52221 18.6765 5.60705 18.7142 5.70043C18.7519 5.79382 18.7704 5.89385 18.7687 5.99455C18.7669 6.09526 18.7448 6.19457 18.7039 6.28657C18.6629 6.37857 18.6038 6.46137 18.5301 6.53003L13.0601 12L18.5301 17.47C18.6038 17.5387 18.6629 17.6215 18.7039 17.7135C18.7448 17.8055 18.7669 17.9048 18.7687 18.0055C18.7704 18.1062 18.7519 18.2062 18.7142 18.2996C18.6765 18.393 18.6203 18.4779 18.5491 18.5491C18.4779 18.6203 18.3931 18.6764 18.2997 18.7142C18.2063 18.7519 18.1063 18.7704 18.0056 18.7686C17.9048 18.7668 17.8055 18.7448 17.7135 18.7038C17.6215 18.6628 17.5387 18.6037 17.4701 18.53L12.0001 13.06L6.53007 18.53C6.3879 18.6625 6.19985 18.7346 6.00555 18.7312C5.81125 18.7278 5.62586 18.6491 5.48845 18.5117C5.35104 18.3742 5.27233 18.1889 5.2689 17.9946C5.26547 17.8003 5.33759 17.6122 5.47007 17.47L10.9401 12L5.47007 6.53003C5.32962 6.38941 5.25073 6.19878 5.25073 6.00003C5.25073 5.80128 5.32962 5.61066 5.47007 5.47003Z", fill: "currentcolor" })), P = ({
|
|
155
155
|
title: l,
|
|
156
156
|
titleId: C,
|
|
157
157
|
...t
|
|
158
|
-
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 3.75C9.81196 3.75 7.71354 4.61919 6.16637 6.16637C4.61919 7.71354 3.75 9.81196 3.75 12C3.75 13.0834 3.96339 14.1562 4.37799 15.1571C4.79259 16.1581 5.40029 17.0675 6.16637 17.8336C6.93245 18.5997 7.84193 19.2074 8.84286 19.622C9.8438 20.0366 10.9166 20.25 12 20.25C13.0834 20.25 14.1562 20.0366 15.1571 19.622C16.1581 19.2074 17.0675 18.5997 17.8336 17.8336C18.5997 17.0675 19.2074 16.1581 19.622 15.1571C20.0366 14.1562 20.25 13.0834 20.25 12C20.25 9.81196 19.3808 7.71354 17.8336 6.16637C16.2865 4.61919 14.188 3.75 12 3.75ZM5.10571 5.10571C6.93419 3.27723 9.41414 2.25 12 2.25C14.5859 2.25 17.0658 3.27723 18.8943 5.10571C20.7228 6.93419 21.75 9.41414 21.75 12C21.75 13.2804 21.4978 14.5482 21.0078 15.7312C20.5178 16.9141 19.7997 17.9889 18.8943 18.8943C17.9889 19.7997 16.9141 20.5178 15.7312 21.0078C14.5482 21.4978 13.2804 21.75 12 21.75C10.7196 21.75 9.45176 21.4978 8.26884 21.0078C7.08591 20.5178 6.01108 19.7997 5.10571 18.8943C4.20034 17.9889 3.48216 16.9141 2.99217 15.7312C2.50219 14.5482 2.25 13.2804 2.25 12C2.25 9.41414 3.27723 6.93419 5.10571 5.10571ZM9.21967 9.21967C9.51256 8.92678 9.98744 8.92678 10.2803 9.21967L12 10.9393L13.7197 9.21967C14.0126 8.92678 14.4874 8.92678 14.7803 9.21967C15.0732 9.51256 15.0732 9.98744 14.7803 10.2803L13.0607 12L14.7803 13.7197C15.0732 14.0126 15.0732 14.4874 14.7803 14.7803C14.4874 15.0732 14.0126 15.0732 13.7197 14.7803L12 13.0607L10.2803 14.7803C9.98744 15.0732 9.51256 15.0732 9.21967 14.7803C8.92678 14.4874 8.92678 14.0126 9.21967 13.7197L10.9393 12L9.21967 10.2803C8.92678 9.98744 8.92678 9.51256 9.21967 9.21967Z", fill: "currentcolor" })),
|
|
158
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 3.75C9.81196 3.75 7.71354 4.61919 6.16637 6.16637C4.61919 7.71354 3.75 9.81196 3.75 12C3.75 13.0834 3.96339 14.1562 4.37799 15.1571C4.79259 16.1581 5.40029 17.0675 6.16637 17.8336C6.93245 18.5997 7.84193 19.2074 8.84286 19.622C9.8438 20.0366 10.9166 20.25 12 20.25C13.0834 20.25 14.1562 20.0366 15.1571 19.622C16.1581 19.2074 17.0675 18.5997 17.8336 17.8336C18.5997 17.0675 19.2074 16.1581 19.622 15.1571C20.0366 14.1562 20.25 13.0834 20.25 12C20.25 9.81196 19.3808 7.71354 17.8336 6.16637C16.2865 4.61919 14.188 3.75 12 3.75ZM5.10571 5.10571C6.93419 3.27723 9.41414 2.25 12 2.25C14.5859 2.25 17.0658 3.27723 18.8943 5.10571C20.7228 6.93419 21.75 9.41414 21.75 12C21.75 13.2804 21.4978 14.5482 21.0078 15.7312C20.5178 16.9141 19.7997 17.9889 18.8943 18.8943C17.9889 19.7997 16.9141 20.5178 15.7312 21.0078C14.5482 21.4978 13.2804 21.75 12 21.75C10.7196 21.75 9.45176 21.4978 8.26884 21.0078C7.08591 20.5178 6.01108 19.7997 5.10571 18.8943C4.20034 17.9889 3.48216 16.9141 2.99217 15.7312C2.50219 14.5482 2.25 13.2804 2.25 12C2.25 9.41414 3.27723 6.93419 5.10571 5.10571ZM9.21967 9.21967C9.51256 8.92678 9.98744 8.92678 10.2803 9.21967L12 10.9393L13.7197 9.21967C14.0126 8.92678 14.4874 8.92678 14.7803 9.21967C15.0732 9.51256 15.0732 9.98744 14.7803 10.2803L13.0607 12L14.7803 13.7197C15.0732 14.0126 15.0732 14.4874 14.7803 14.7803C14.4874 15.0732 14.0126 15.0732 13.7197 14.7803L12 13.0607L10.2803 14.7803C9.98744 15.0732 9.51256 15.0732 9.21967 14.7803C8.92678 14.4874 8.92678 14.0126 9.21967 13.7197L10.9393 12L9.21967 10.2803C8.92678 9.98744 8.92678 9.51256 9.21967 9.21967Z", fill: "currentcolor" })), N = ({
|
|
159
159
|
title: l,
|
|
160
160
|
titleId: C,
|
|
161
161
|
...t
|
|
@@ -287,15 +287,15 @@ const n = ({
|
|
|
287
287
|
title: l,
|
|
288
288
|
titleId: C,
|
|
289
289
|
...t
|
|
290
|
-
}) => /* @__PURE__ */ e.createElement("svg", { width: 16, height: 16, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.0001 14.4C9.69748 14.4 11.3253 13.7257 12.5256 12.5255C13.7258 11.3252 14.4001 9.69736 14.4001 7.99998C14.4001 6.30259 13.7258 4.67473 12.5256 3.47449C11.3253 2.27426 9.69748 1.59998 8.0001 1.59998C6.30271 1.59998 4.67485 2.27426 3.47461 3.47449C2.27438 4.67473 1.6001 6.30259 1.6001 7.99998C1.6001 9.69736 2.27438 11.3252 3.47461 12.5255C4.67485 13.7257 6.30271 14.4 8.0001 14.4ZM5.4001 7.39998C5.24097 7.39998 5.08836 7.46319 4.97583 7.57571C4.86331 7.68823 4.8001 7.84085 4.8001 7.99998C4.8001 8.15911 4.86331 8.31172 4.97583 8.42424C5.08836 8.53676 5.24097 8.59998 5.4001 8.59998H10.6001C10.7592 8.59998 10.9118 8.53676 11.0244 8.42424C11.1369 8.31172 11.2001 8.15911 11.2001 7.99998C11.2001 7.84085 11.1369 7.68823 11.0244 7.57571C10.9118 7.46319 10.7592 7.39998 10.6001 7.39998H5.4001Z", fill: "currentcolor" })),
|
|
290
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 16, height: 16, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.0001 14.4C9.69748 14.4 11.3253 13.7257 12.5256 12.5255C13.7258 11.3252 14.4001 9.69736 14.4001 7.99998C14.4001 6.30259 13.7258 4.67473 12.5256 3.47449C11.3253 2.27426 9.69748 1.59998 8.0001 1.59998C6.30271 1.59998 4.67485 2.27426 3.47461 3.47449C2.27438 4.67473 1.6001 6.30259 1.6001 7.99998C1.6001 9.69736 2.27438 11.3252 3.47461 12.5255C4.67485 13.7257 6.30271 14.4 8.0001 14.4ZM5.4001 7.39998C5.24097 7.39998 5.08836 7.46319 4.97583 7.57571C4.86331 7.68823 4.8001 7.84085 4.8001 7.99998C4.8001 8.15911 4.86331 8.31172 4.97583 8.42424C5.08836 8.53676 5.24097 8.59998 5.4001 8.59998H10.6001C10.7592 8.59998 10.9118 8.53676 11.0244 8.42424C11.1369 8.31172 11.2001 8.15911 11.2001 7.99998C11.2001 7.84085 11.1369 7.68823 11.0244 7.57571C10.9118 7.46319 10.7592 7.39998 10.6001 7.39998H5.4001Z", fill: "currentcolor" })), H1 = ({
|
|
291
291
|
title: l,
|
|
292
292
|
titleId: C,
|
|
293
293
|
...t
|
|
294
|
-
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { d: "M10.3678 10.4642C10.3678 11.0018 10.4926 11.4098 10.7422 11.6882C11.0014 11.9666 11.3614 12.1058 11.8222 12.1058C12.091 12.1058 12.3694 12.0242 12.6574 11.861C12.955 11.6882 13.2238 11.4146 13.4638 11.0402C13.3774 10.2338 13.1806 9.64819 12.8734 9.28339C12.5662 8.91859 12.187 8.73619 11.7358 8.73619C11.3614 8.73619 11.0398 8.88499 10.771 9.18259C10.5022 9.48019 10.3678 9.90739 10.3678 10.4642ZM11.4334 16.973C10.8862 16.973 10.411 16.8722 10.0078 16.6706C9.60457 16.469 9.26377 16.2242 8.98537 15.9362L9.87817 14.9282C10.051 15.1298 10.267 15.2978 10.5262 15.4322C10.795 15.557 11.0686 15.6194 11.347 15.6194C11.731 15.6194 12.0814 15.5138 12.3982 15.3026C12.715 15.0914 12.9742 14.741 13.1758 14.2514C13.3774 13.7522 13.4878 13.0802 13.507 12.2354C13.2382 12.5618 12.9214 12.821 12.5566 13.013C12.1918 13.205 11.8414 13.301 11.5054 13.301C10.7182 13.301 10.075 13.0706 9.57577 12.6098C9.08617 12.1394 8.84137 11.4242 8.84137 10.4642C8.84137 9.84979 8.97097 9.32179 9.23017 8.88019C9.49897 8.42899 9.84937 8.08339 10.2814 7.84339C10.723 7.59379 11.203 7.46899 11.7214 7.46899C12.3166 7.46899 12.8638 7.62739 13.363 7.94419C13.8718 8.26099 14.275 8.75059 14.5726 9.41299C14.8798 10.0658 15.0334 10.9058 15.0334 11.933C15.0334 13.1138 14.8654 14.0786 14.5294 14.8274C14.1934 15.5666 13.7518 16.109 13.2046 16.4546C12.6574 16.8002 12.067 16.973 11.4334 16.973Z", fill: "currentcolor" })),
|
|
294
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { d: "M10.3678 10.4642C10.3678 11.0018 10.4926 11.4098 10.7422 11.6882C11.0014 11.9666 11.3614 12.1058 11.8222 12.1058C12.091 12.1058 12.3694 12.0242 12.6574 11.861C12.955 11.6882 13.2238 11.4146 13.4638 11.0402C13.3774 10.2338 13.1806 9.64819 12.8734 9.28339C12.5662 8.91859 12.187 8.73619 11.7358 8.73619C11.3614 8.73619 11.0398 8.88499 10.771 9.18259C10.5022 9.48019 10.3678 9.90739 10.3678 10.4642ZM11.4334 16.973C10.8862 16.973 10.411 16.8722 10.0078 16.6706C9.60457 16.469 9.26377 16.2242 8.98537 15.9362L9.87817 14.9282C10.051 15.1298 10.267 15.2978 10.5262 15.4322C10.795 15.557 11.0686 15.6194 11.347 15.6194C11.731 15.6194 12.0814 15.5138 12.3982 15.3026C12.715 15.0914 12.9742 14.741 13.1758 14.2514C13.3774 13.7522 13.4878 13.0802 13.507 12.2354C13.2382 12.5618 12.9214 12.821 12.5566 13.013C12.1918 13.205 11.8414 13.301 11.5054 13.301C10.7182 13.301 10.075 13.0706 9.57577 12.6098C9.08617 12.1394 8.84137 11.4242 8.84137 10.4642C8.84137 9.84979 8.97097 9.32179 9.23017 8.88019C9.49897 8.42899 9.84937 8.08339 10.2814 7.84339C10.723 7.59379 11.203 7.46899 11.7214 7.46899C12.3166 7.46899 12.8638 7.62739 13.363 7.94419C13.8718 8.26099 14.275 8.75059 14.5726 9.41299C14.8798 10.0658 15.0334 10.9058 15.0334 11.933C15.0334 13.1138 14.8654 14.0786 14.5294 14.8274C14.1934 15.5666 13.7518 16.109 13.2046 16.4546C12.6574 16.8002 12.067 16.973 11.4334 16.973Z", fill: "currentcolor" })), V1 = ({
|
|
295
295
|
title: l,
|
|
296
296
|
titleId: C,
|
|
297
297
|
...t
|
|
298
|
-
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { d: "M11.7888 15.3334H11.1638V16.5834H11.7888V15.3334ZM18.8721 16.5834H19.4971V15.3334H18.8721V16.5834ZM11.7888 7.41671H11.1638V8.66671H11.7888V7.41671ZM18.8721 8.66671H19.4971V7.41671H18.8721V8.66671ZM7.20546 5.95837H7.83046V5.33337H7.20546V5.95837ZM6.58046 10.125V10.75H7.83046V10.125H6.58046ZM4.69568 6.9598L4.23877 7.38625L5.09167 8.30007L5.54858 7.87362L4.69568 6.9598ZM6.68463 5.95837V5.33337H6.43828L6.25818 5.50147L6.68463 5.95837ZM5.33041 18.0417H4.70541V18.6667H5.33041V18.0417ZM8.03874 18.6667H8.66374V17.4167H8.03874V18.6667ZM11.7888 16.5834H18.8721V15.3334H11.7888V16.5834ZM11.7888 8.66671H18.8721V7.41671H11.7888V8.66671ZM6.58046 5.95837V10.125H7.83046V5.95837H6.58046ZM5.54858 7.87362L7.11108 6.41528L6.25818 5.50147L4.69568 6.9598L5.54858 7.87362ZM6.68463 6.58337H7.20546V5.33337H6.68463V6.58337ZM5.33041 18.6667H8.03874V17.4167H5.33041V18.6667ZM6.67293 14.5C7.00496 14.5 7.20541 14.7172 7.20541 15.0325H8.45541C8.45541 14.0693 7.73704 13.25 6.67293 13.25V14.5ZM7.20541 15.0325C7.20541 15.2103 7.13903 15.3634 6.97984 15.5364C6.80552 15.7259 6.55697 15.8993 6.23841 16.1076C5.94904 16.2968 5.57589 16.5298 5.28966 16.8028C4.98949 17.0891 4.70541 17.4921 4.70541 18.0417H5.95541C5.95541 17.9663 5.98384 17.8681 6.15241 17.7073C6.33493 17.5332 6.58679 17.3733 6.92241 17.1539C7.22885 16.9535 7.6053 16.7028 7.89974 16.3827C8.20929 16.0463 8.45541 15.6046 8.45541 15.0325H7.20541ZM5.41926 15.1379C5.80584 14.759 6.25218 14.5 6.67293 14.5V13.25C5.76934 13.25 5.02283 13.7761 4.54424 14.2452L5.41926 15.1379Z", fill: "currentColor" })),
|
|
298
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { d: "M11.7888 15.3334H11.1638V16.5834H11.7888V15.3334ZM18.8721 16.5834H19.4971V15.3334H18.8721V16.5834ZM11.7888 7.41671H11.1638V8.66671H11.7888V7.41671ZM18.8721 8.66671H19.4971V7.41671H18.8721V8.66671ZM7.20546 5.95837H7.83046V5.33337H7.20546V5.95837ZM6.58046 10.125V10.75H7.83046V10.125H6.58046ZM4.69568 6.9598L4.23877 7.38625L5.09167 8.30007L5.54858 7.87362L4.69568 6.9598ZM6.68463 5.95837V5.33337H6.43828L6.25818 5.50147L6.68463 5.95837ZM5.33041 18.0417H4.70541V18.6667H5.33041V18.0417ZM8.03874 18.6667H8.66374V17.4167H8.03874V18.6667ZM11.7888 16.5834H18.8721V15.3334H11.7888V16.5834ZM11.7888 8.66671H18.8721V7.41671H11.7888V8.66671ZM6.58046 5.95837V10.125H7.83046V5.95837H6.58046ZM5.54858 7.87362L7.11108 6.41528L6.25818 5.50147L4.69568 6.9598L5.54858 7.87362ZM6.68463 6.58337H7.20546V5.33337H6.68463V6.58337ZM5.33041 18.6667H8.03874V17.4167H5.33041V18.6667ZM6.67293 14.5C7.00496 14.5 7.20541 14.7172 7.20541 15.0325H8.45541C8.45541 14.0693 7.73704 13.25 6.67293 13.25V14.5ZM7.20541 15.0325C7.20541 15.2103 7.13903 15.3634 6.97984 15.5364C6.80552 15.7259 6.55697 15.8993 6.23841 16.1076C5.94904 16.2968 5.57589 16.5298 5.28966 16.8028C4.98949 17.0891 4.70541 17.4921 4.70541 18.0417H5.95541C5.95541 17.9663 5.98384 17.8681 6.15241 17.7073C6.33493 17.5332 6.58679 17.3733 6.92241 17.1539C7.22885 16.9535 7.6053 16.7028 7.89974 16.3827C8.20929 16.0463 8.45541 15.6046 8.45541 15.0325H7.20541ZM5.41926 15.1379C5.80584 14.759 6.25218 14.5 6.67293 14.5V13.25C5.76934 13.25 5.02283 13.7761 4.54424 14.2452L5.41926 15.1379Z", fill: "currentColor" })), f1 = ({
|
|
299
299
|
title: l,
|
|
300
300
|
titleId: C,
|
|
301
301
|
...t
|
|
@@ -351,15 +351,15 @@ const n = ({
|
|
|
351
351
|
title: l,
|
|
352
352
|
titleId: C,
|
|
353
353
|
...t
|
|
354
|
-
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M16.375 3.64771L19.9357 7.20837L16.375 10.769L15.3144 9.70837L17.0644 7.95837H10.125C7.66275 7.95837 5.66669 9.95443 5.66669 12.4167C5.66669 14.879 7.66275 16.875 10.125 16.875H17.9584V18.375H10.125C6.83433 18.375 4.16669 15.7074 4.16669 12.4167C4.16669 9.126 6.83432 6.45837 10.125 6.45837H17.0644L15.3144 4.70837L16.375 3.64771Z", fill: "currentColor" })),
|
|
354
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M16.375 3.64771L19.9357 7.20837L16.375 10.769L15.3144 9.70837L17.0644 7.95837H10.125C7.66275 7.95837 5.66669 9.95443 5.66669 12.4167C5.66669 14.879 7.66275 16.875 10.125 16.875H17.9584V18.375H10.125C6.83433 18.375 4.16669 15.7074 4.16669 12.4167C4.16669 9.126 6.83432 6.45837 10.125 6.45837H17.0644L15.3144 4.70837L16.375 3.64771Z", fill: "currentColor" })), U1 = ({
|
|
355
355
|
title: l,
|
|
356
356
|
titleId: C,
|
|
357
357
|
...t
|
|
358
|
-
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M14.9696 3.46967C14.6767 3.76256 14.6767 4.23744 14.9696 4.53033L17.1892 6.74998L7.00001 6.74989C4.92893 6.74989 3.25 8.42883 3.25 10.4999C3.25 10.9141 3.58579 11.2499 4 11.2499C4.41422 11.2499 4.75 10.9141 4.75 10.4999C4.75 9.25725 5.75736 8.2499 7 8.24989L17.1893 8.24998L14.9696 10.4697C14.6767 10.7626 14.6767 11.2374 14.9696 11.5303C15.2625 11.8232 15.7373 11.8232 16.0302 11.5303L19.5302 8.03033C19.6709 7.88968 19.7499 7.69891 19.7499 7.5C19.7499 7.30109 19.6709 7.11032 19.5302 6.96967L16.0302 3.46967C15.7373 3.17678 15.2625 3.17678 14.9696 3.46967ZM9.53024 12.4697C9.23735 12.1768 8.76247 12.1768 8.46958 12.4697L4.96967 15.9696C4.67678 16.2625 4.67677 16.7373 4.96966 17.0302L8.46956 20.5303C8.76245 20.8232 9.23732 20.8232 9.53022 20.5303C9.82313 20.2375 9.82314 19.7626 9.53025 19.4697L7.31059 17.2499H17C19.0711 17.2499 20.75 15.571 20.75 13.4999C20.75 13.0857 20.4142 12.7499 20 12.7499C19.5858 12.7499 19.25 13.0857 19.25 13.4999C19.25 14.7425 18.2426 15.7499 17 15.7499H7.31067L9.53024 13.5303C9.82313 13.2374 9.82313 12.7626 9.53024 12.4697Z", fill: "currentcolor" })),
|
|
358
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M14.9696 3.46967C14.6767 3.76256 14.6767 4.23744 14.9696 4.53033L17.1892 6.74998L7.00001 6.74989C4.92893 6.74989 3.25 8.42883 3.25 10.4999C3.25 10.9141 3.58579 11.2499 4 11.2499C4.41422 11.2499 4.75 10.9141 4.75 10.4999C4.75 9.25725 5.75736 8.2499 7 8.24989L17.1893 8.24998L14.9696 10.4697C14.6767 10.7626 14.6767 11.2374 14.9696 11.5303C15.2625 11.8232 15.7373 11.8232 16.0302 11.5303L19.5302 8.03033C19.6709 7.88968 19.7499 7.69891 19.7499 7.5C19.7499 7.30109 19.6709 7.11032 19.5302 6.96967L16.0302 3.46967C15.7373 3.17678 15.2625 3.17678 14.9696 3.46967ZM9.53024 12.4697C9.23735 12.1768 8.76247 12.1768 8.46958 12.4697L4.96967 15.9696C4.67678 16.2625 4.67677 16.7373 4.96966 17.0302L8.46956 20.5303C8.76245 20.8232 9.23732 20.8232 9.53022 20.5303C9.82313 20.2375 9.82314 19.7626 9.53025 19.4697L7.31059 17.2499H17C19.0711 17.2499 20.75 15.571 20.75 13.4999C20.75 13.0857 20.4142 12.7499 20 12.7499C19.5858 12.7499 19.25 13.0857 19.25 13.4999C19.25 14.7425 18.2426 15.7499 17 15.7499H7.31067L9.53024 13.5303C9.82313 13.2374 9.82313 12.7626 9.53024 12.4697Z", fill: "currentcolor" })), j1 = ({
|
|
359
359
|
title: l,
|
|
360
360
|
titleId: C,
|
|
361
361
|
...t
|
|
362
|
-
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { d: "M3.53033 2.46967C3.23744 2.17678 2.76256 2.17678 2.46967 2.46967C2.17678 2.76256 2.17678 3.23744 2.46967 3.53033L20.4697 21.5303C20.7626 21.8232 21.2374 21.8232 21.5303 21.5303C21.8232 21.2374 21.8232 20.7626 21.5303 20.4697L18.1356 17.0749C19.6516 16.5939 20.7501 15.1752 20.7501 13.4999C20.7501 13.0857 20.4143 12.7499 20.0001 12.7499C19.5859 12.7499 19.2501 13.0857 19.2501 13.4999C19.2501 14.7425 18.2428 15.7499 17.0001 15.7499C16.9416 15.7499 16.8846 15.7566 16.8299 15.7693L9.31066 8.25L17.1894 8.25L14.9697 10.4697C14.6768 10.7626 14.6768 11.2374 14.9697 11.5303C15.2626 11.8232 15.7375 11.8232 16.0304 11.5303L19.5304 8.03033C19.671 7.88968 19.75 7.69891 19.75 7.5C19.75 7.30109 19.671 7.11032 19.5304 6.96967L16.0304 3.46967C15.7375 3.17678 15.2626 3.17678 14.9697 3.46967C14.6768 3.76256 14.6768 4.23744 14.9697 4.53033L17.1894 6.75L7.81066 6.75L3.53033 2.46967Z", fill: "currentcolor" }), /* @__PURE__ */ e.createElement("path", { d: "M3.97927 8.27764C4.22494 7.94414 4.69444 7.87293 5.02794 8.1186C5.36144 8.36426 5.43264 8.83377 5.18698 9.16727C4.91224 9.54024 4.75012 10 4.75012 10.4999C4.75012 10.9141 4.41434 11.2499 4.00012 11.2499C3.58591 11.2499 3.25012 10.9141 3.25012 10.4999C3.25012 9.6692 3.52111 8.89961 3.97927 8.27764Z", fill: "currentcolor" }), /* @__PURE__ */ e.createElement("path", { d: "M8.41501 12.5244C8.7079 12.2315 9.18277 12.2315 9.47567 12.5244C9.76856 12.8173 9.76856 13.2921 9.47566 13.585L7.31079 15.7499L12.3744 15.7499C12.7886 15.7499 13.1244 16.0857 13.1244 16.4999C13.1244 16.9141 12.7886 17.2499 12.3744 17.2499L7.31071 17.2499L9.53038 19.4697C9.82326 19.7626 9.82325 20.2375 9.53035 20.5303C9.23744 20.8232 8.76257 20.8232 8.46969 20.5303L4.96978 17.0302C4.6769 16.7373 4.6769 16.2625 4.96979 15.9696L8.41501 12.5244Z", fill: "currentcolor" })),
|
|
362
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { d: "M3.53033 2.46967C3.23744 2.17678 2.76256 2.17678 2.46967 2.46967C2.17678 2.76256 2.17678 3.23744 2.46967 3.53033L20.4697 21.5303C20.7626 21.8232 21.2374 21.8232 21.5303 21.5303C21.8232 21.2374 21.8232 20.7626 21.5303 20.4697L18.1356 17.0749C19.6516 16.5939 20.7501 15.1752 20.7501 13.4999C20.7501 13.0857 20.4143 12.7499 20.0001 12.7499C19.5859 12.7499 19.2501 13.0857 19.2501 13.4999C19.2501 14.7425 18.2428 15.7499 17.0001 15.7499C16.9416 15.7499 16.8846 15.7566 16.8299 15.7693L9.31066 8.25L17.1894 8.25L14.9697 10.4697C14.6768 10.7626 14.6768 11.2374 14.9697 11.5303C15.2626 11.8232 15.7375 11.8232 16.0304 11.5303L19.5304 8.03033C19.671 7.88968 19.75 7.69891 19.75 7.5C19.75 7.30109 19.671 7.11032 19.5304 6.96967L16.0304 3.46967C15.7375 3.17678 15.2626 3.17678 14.9697 3.46967C14.6768 3.76256 14.6768 4.23744 14.9697 4.53033L17.1894 6.75L7.81066 6.75L3.53033 2.46967Z", fill: "currentcolor" }), /* @__PURE__ */ e.createElement("path", { d: "M3.97927 8.27764C4.22494 7.94414 4.69444 7.87293 5.02794 8.1186C5.36144 8.36426 5.43264 8.83377 5.18698 9.16727C4.91224 9.54024 4.75012 10 4.75012 10.4999C4.75012 10.9141 4.41434 11.2499 4.00012 11.2499C3.58591 11.2499 3.25012 10.9141 3.25012 10.4999C3.25012 9.6692 3.52111 8.89961 3.97927 8.27764Z", fill: "currentcolor" }), /* @__PURE__ */ e.createElement("path", { d: "M8.41501 12.5244C8.7079 12.2315 9.18277 12.2315 9.47567 12.5244C9.76856 12.8173 9.76856 13.2921 9.47566 13.585L7.31079 15.7499L12.3744 15.7499C12.7886 15.7499 13.1244 16.0857 13.1244 16.4999C13.1244 16.9141 12.7886 17.2499 12.3744 17.2499L7.31071 17.2499L9.53038 19.4697C9.82326 19.7626 9.82325 20.2375 9.53035 20.5303C9.23744 20.8232 8.76257 20.8232 8.46969 20.5303L4.96978 17.0302C4.6769 16.7373 4.6769 16.2625 4.96979 15.9696L8.41501 12.5244Z", fill: "currentcolor" })), O1 = ({
|
|
363
363
|
title: l,
|
|
364
364
|
titleId: C,
|
|
365
365
|
...t
|
|
@@ -367,11 +367,11 @@ const n = ({
|
|
|
367
367
|
title: l,
|
|
368
368
|
titleId: C,
|
|
369
369
|
...t
|
|
370
|
-
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { d: "M18.875 5.125H19.5V4.5H18.875V5.125ZM18.875 18.875V19.5H19.5V18.875H18.875ZM5.125 18.875H4.5V19.5H5.125V18.875ZM5.125 5.125V4.5H4.5V5.125H5.125ZM10.75 5.125V4.5H9.5V5.125H10.75ZM9.5 18.875V19.5H10.75V18.875H9.5ZM5.125 9.5H4.5V10.75H5.125V9.5ZM18.875 10.75H19.5V9.5H18.875V10.75ZM18.25 5.125V18.875H19.5V5.125H18.25ZM18.875 18.25H5.125V19.5H18.875V18.25ZM5.75 18.875V5.125H4.5V18.875H5.75ZM5.125 5.75H18.875V4.5H5.125V5.75ZM9.5 5.125V10.125H10.75V5.125H9.5ZM9.5 10.125V18.875H10.75V10.125H9.5ZM5.125 10.75H10.125V9.5H5.125V10.75ZM10.125 10.75H18.875V9.5H10.125V10.75Z", fill: "currentColor" })),
|
|
370
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { d: "M18.875 5.125H19.5V4.5H18.875V5.125ZM18.875 18.875V19.5H19.5V18.875H18.875ZM5.125 18.875H4.5V19.5H5.125V18.875ZM5.125 5.125V4.5H4.5V5.125H5.125ZM10.75 5.125V4.5H9.5V5.125H10.75ZM9.5 18.875V19.5H10.75V18.875H9.5ZM5.125 9.5H4.5V10.75H5.125V9.5ZM18.875 10.75H19.5V9.5H18.875V10.75ZM18.25 5.125V18.875H19.5V5.125H18.25ZM18.875 18.25H5.125V19.5H18.875V18.25ZM5.75 18.875V5.125H4.5V18.875H5.75ZM5.125 5.75H18.875V4.5H5.125V5.75ZM9.5 5.125V10.125H10.75V5.125H9.5ZM9.5 10.125V18.875H10.75V10.125H9.5ZM5.125 10.75H10.125V9.5H5.125V10.75ZM10.125 10.75H18.875V9.5H10.125V10.75Z", fill: "currentColor" })), P1 = ({
|
|
371
371
|
title: l,
|
|
372
372
|
titleId: C,
|
|
373
373
|
...t
|
|
374
|
-
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { d: "M11.7646 16.973C11.0254 16.973 10.4014 16.8482 9.89257 16.5986C9.39337 16.3394 8.98057 16.0322 8.65417 15.677L9.44617 14.6114C9.72457 14.8898 10.0414 15.1298 10.3966 15.3314C10.7518 15.5234 11.1598 15.6194 11.6206 15.6194C12.1198 15.6194 12.523 15.4994 12.8302 15.2594C13.147 15.0098 13.3054 14.669 13.3054 14.237C13.3054 13.9202 13.2238 13.6466 13.0606 13.4162C12.907 13.1762 12.6334 12.9938 12.2398 12.869C11.8558 12.7442 11.3134 12.6818 10.6126 12.6818V11.4722C11.515 11.4722 12.139 11.333 12.4846 11.0546C12.8302 10.7762 13.003 10.4258 13.003 10.0034C13.003 9.61939 12.883 9.32179 12.643 9.11059C12.403 8.88979 12.0718 8.77939 11.6494 8.77939C11.2942 8.77939 10.9678 8.86099 10.6702 9.02419C10.3726 9.17779 10.0846 9.38419 9.80617 9.64339L8.95657 8.62099C9.35017 8.27539 9.76777 7.99699 10.2094 7.78579C10.6606 7.57459 11.1598 7.46899 11.707 7.46899C12.5902 7.46899 13.3054 7.68019 13.8526 8.10259C14.3998 8.51539 14.6734 9.11059 14.6734 9.88819C14.6734 10.397 14.5294 10.829 14.2414 11.1842C13.963 11.5298 13.5742 11.7986 13.075 11.9906V12.0482C13.6126 12.1922 14.0638 12.4562 14.4286 12.8402C14.7934 13.2242 14.9758 13.7186 14.9758 14.3234C14.9758 14.8802 14.827 15.3554 14.5294 15.749C14.2414 16.1426 13.8526 16.445 13.363 16.6562C12.883 16.8674 12.3502 16.973 11.7646 16.973Z", fill: "currentcolor" })),
|
|
374
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { d: "M11.7646 16.973C11.0254 16.973 10.4014 16.8482 9.89257 16.5986C9.39337 16.3394 8.98057 16.0322 8.65417 15.677L9.44617 14.6114C9.72457 14.8898 10.0414 15.1298 10.3966 15.3314C10.7518 15.5234 11.1598 15.6194 11.6206 15.6194C12.1198 15.6194 12.523 15.4994 12.8302 15.2594C13.147 15.0098 13.3054 14.669 13.3054 14.237C13.3054 13.9202 13.2238 13.6466 13.0606 13.4162C12.907 13.1762 12.6334 12.9938 12.2398 12.869C11.8558 12.7442 11.3134 12.6818 10.6126 12.6818V11.4722C11.515 11.4722 12.139 11.333 12.4846 11.0546C12.8302 10.7762 13.003 10.4258 13.003 10.0034C13.003 9.61939 12.883 9.32179 12.643 9.11059C12.403 8.88979 12.0718 8.77939 11.6494 8.77939C11.2942 8.77939 10.9678 8.86099 10.6702 9.02419C10.3726 9.17779 10.0846 9.38419 9.80617 9.64339L8.95657 8.62099C9.35017 8.27539 9.76777 7.99699 10.2094 7.78579C10.6606 7.57459 11.1598 7.46899 11.707 7.46899C12.5902 7.46899 13.3054 7.68019 13.8526 8.10259C14.3998 8.51539 14.6734 9.11059 14.6734 9.88819C14.6734 10.397 14.5294 10.829 14.2414 11.1842C13.963 11.5298 13.5742 11.7986 13.075 11.9906V12.0482C13.6126 12.1922 14.0638 12.4562 14.4286 12.8402C14.7934 13.2242 14.9758 13.7186 14.9758 14.3234C14.9758 14.8802 14.827 15.3554 14.5294 15.749C14.2414 16.1426 13.8526 16.445 13.363 16.6562C12.883 16.8674 12.3502 16.973 11.7646 16.973Z", fill: "currentcolor" })), N1 = ({
|
|
375
375
|
title: l,
|
|
376
376
|
titleId: C,
|
|
377
377
|
...t
|
|
@@ -399,7 +399,15 @@ const n = ({
|
|
|
399
399
|
title: l,
|
|
400
400
|
titleId: C,
|
|
401
401
|
...t
|
|
402
|
-
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { d: "
|
|
402
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { d: "M4.5 20.25L3.75329 20.1798L3.67619 21H4.5V20.25ZM11.8523 13.2513L11.8393 12.5014H11.8393L11.8523 13.2513ZM13.029 13.3138L12.9351 14.0579H12.9351L13.029 13.3138ZM13.8116 14.2259L14.5375 14.4146L14.915 12.9629L14.1892 12.7741L13.8116 14.2259ZM12.5 21H13.25V19.5H12.5V21ZM9.81133 12.7741L9.08547 12.9629L9.46301 14.4146L10.1889 14.2259L9.81133 12.7741ZM19 15.25V14.5H17.5V15.25H19ZM17.5 21.25V22H19V21.25H17.5ZM15.25 17.5H14.5V19H15.25V17.5ZM21.25 19H22V17.5H21.25V19ZM15 6.5C15 8.15685 13.6569 9.5 12 9.5V11C14.4853 11 16.5 8.98528 16.5 6.5H15ZM12 9.5C10.3431 9.5 9 8.15685 9 6.5H7.5C7.5 8.98528 9.51472 11 12 11V9.5ZM9 6.5C9 4.84315 10.3431 3.5 12 3.5V2C9.51472 2 7.5 4.01472 7.5 6.5H9ZM12 3.5C13.6569 3.5 15 4.84315 15 6.5H16.5C16.5 4.01472 14.4853 2 12 2V3.5ZM5.24671 20.3202C5.57928 16.7825 8.17444 14.0652 11.8653 14.0012L11.8393 12.5014C7.30719 12.58 4.14991 15.9609 3.75329 20.1798L5.24671 20.3202ZM11.8653 14.0012C11.91 14.0004 11.9549 14 12 14V12.5C11.9463 12.5 11.8927 12.5005 11.8393 12.5014L11.8653 14.0012ZM12 14C12.3212 14 12.6331 14.0198 12.9351 14.0579L13.1229 12.5697C12.7576 12.5236 12.383 12.5 12 12.5V14ZM12.9351 14.0579C13.2371 14.096 13.5295 14.1525 13.8116 14.2259L14.1892 12.7741C13.844 12.6844 13.4882 12.6158 13.1229 12.5697L12.9351 14.0579ZM4.5 21H12.5V19.5H4.5V21ZM11.8393 12.5014C11.1313 12.5137 10.4534 12.6072 9.81133 12.7741L10.1889 14.2259C10.7134 14.0894 11.2732 14.0114 11.8653 14.0012L11.8393 12.5014ZM15.2911 13.1468C14.6176 12.8631 13.8918 12.6667 13.1229 12.5697L12.9351 14.0579C13.5701 14.1381 14.1631 14.2993 14.7089 14.5292L15.2911 13.1468ZM17.5 15.25V18.25H19V15.25H17.5ZM17.5 18.25V21.25H19V18.25H17.5ZM15.25 19H18.25V17.5H15.25V19ZM18.25 19H21.25V17.5H18.25V19Z", fill: "currentColor" })), Y1 = ({
|
|
403
|
+
title: l,
|
|
404
|
+
titleId: C,
|
|
405
|
+
...t
|
|
406
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { d: "M7.5 6.5C7.5 4.01472 9.51472 2 12 2C14.4853 2 16.5 4.01472 16.5 6.5C16.5 8.98528 14.4853 11 12 11C9.51472 11 7.5 8.98528 7.5 6.5Z", fill: "currentColor" }), /* @__PURE__ */ e.createElement("path", { d: "M12.1603 12.5014L12.1435 12.5011C12.0959 12.5004 12.0475 12.5 11.9996 12.5C11.9459 12.5 11.8923 12.5005 11.8389 12.5014C11.7356 12.5032 11.6329 12.5067 11.5309 12.5119C11.3097 12.5233 11.0916 12.5426 10.8767 12.5697L10.8739 12.5701L10.8148 12.5778L10.8119 12.5782L10.8085 12.5786L10.74 12.5881C10.5809 12.6107 10.4237 12.6377 10.2685 12.6688C6.57477 13.4093 4.10097 16.4772 3.75289 20.1798L3.67578 21H12.9996V16H15.9996V13.4714L15.5669 13.2694C15.4759 13.2269 15.3838 13.1861 15.2907 13.1468C14.9374 12.998 14.5697 12.8732 14.1887 12.7741L12.1603 12.5014Z", fill: "currentColor" }), /* @__PURE__ */ e.createElement("path", { d: "M12.1603 12.5014C12.4875 12.5071 12.8085 12.5301 13.1225 12.5697L13.1335 12.5711C13.2211 12.5823 13.3082 12.5947 13.3947 12.6085C13.4507 12.6174 13.5065 12.6268 13.562 12.6368L13.563 12.637L13.5848 12.6409C13.6484 12.6525 13.7118 12.6648 13.7748 12.6778L12.1603 12.5014Z", fill: "currentColor" }), /* @__PURE__ */ e.createElement("path", { d: "M22 17.5H19V14.5H17.5V17.5H14.5V19H17.5V22H19V19H22V17.5Z", fill: "currentColor" })), _1 = ({
|
|
407
|
+
title: l,
|
|
408
|
+
titleId: C,
|
|
409
|
+
...t
|
|
410
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": C, ...t }, l ? /* @__PURE__ */ e.createElement("title", { id: C }, l) : null, /* @__PURE__ */ e.createElement("path", { d: "M11.995 16.973C11.0446 16.973 10.2862 16.5602 9.71978 15.7346C9.16298 14.909 8.88458 13.7234 8.88458 12.1778C8.88458 10.6322 9.16298 9.46099 9.71978 8.66419C10.2862 7.86739 11.0446 7.46899 11.995 7.46899C12.9454 7.46899 13.699 7.86739 14.2558 8.66419C14.8222 9.46099 15.1054 10.6322 15.1054 12.1778C15.1054 13.7234 14.8222 14.909 14.2558 15.7346C13.699 16.5602 12.9454 16.973 11.995 16.973ZM11.995 15.677C12.2926 15.677 12.5566 15.5666 12.787 15.3458C13.0174 15.1154 13.195 14.7458 13.3198 14.237C13.4542 13.7282 13.5214 13.0418 13.5214 12.1778C13.5214 11.3138 13.4542 10.6322 13.3198 10.133C13.195 9.63379 13.0174 9.28339 12.787 9.08179C12.5566 8.87059 12.2926 8.76499 11.995 8.76499C11.707 8.76499 11.4478 8.87059 11.2174 9.08179C10.987 9.28339 10.8046 9.63379 10.6702 10.133C10.5358 10.6322 10.4686 11.3138 10.4686 12.1778C10.4686 13.0418 10.5358 13.7282 10.6702 14.237C10.8046 14.7458 10.987 15.1154 11.2174 15.3458C11.4478 15.5666 11.707 15.677 11.995 15.677Z", fill: "currentcolor" })), $1 = {
|
|
403
411
|
AcademicCap: n,
|
|
404
412
|
ArrowDownOnSquare: r,
|
|
405
413
|
ArrowLeft: i,
|
|
@@ -418,9 +426,9 @@ const n = ({
|
|
|
418
426
|
BuildingOffice: M,
|
|
419
427
|
BulletList: E,
|
|
420
428
|
Calendar: p,
|
|
421
|
-
ChainLink:
|
|
422
|
-
Check:
|
|
423
|
-
CheckCircle:
|
|
429
|
+
ChainLink: H,
|
|
430
|
+
Check: V,
|
|
431
|
+
CheckCircle: f,
|
|
424
432
|
CheckCircleFillMini: Z,
|
|
425
433
|
CheckSmall: x,
|
|
426
434
|
CheveronDown: b,
|
|
@@ -434,12 +442,12 @@ const n = ({
|
|
|
434
442
|
CircleSmall: D,
|
|
435
443
|
CircleSmallFilled: T,
|
|
436
444
|
CircleStack: W,
|
|
437
|
-
Clock:
|
|
438
|
-
ClockCircleFillMini:
|
|
439
|
-
Collection:
|
|
445
|
+
Clock: U,
|
|
446
|
+
ClockCircleFillMini: j,
|
|
447
|
+
Collection: O,
|
|
440
448
|
Cross: q,
|
|
441
|
-
CrossCircle:
|
|
442
|
-
CrossCircleFillMini:
|
|
449
|
+
CrossCircle: P,
|
|
450
|
+
CrossCircleFillMini: N,
|
|
443
451
|
CrossCircleMini: Q,
|
|
444
452
|
CrossSmall: z,
|
|
445
453
|
CubeTransparent: G,
|
|
@@ -472,9 +480,9 @@ const n = ({
|
|
|
472
480
|
MiniCheck: M1,
|
|
473
481
|
Minus: E1,
|
|
474
482
|
MinusCircleFillMini: p1,
|
|
475
|
-
Nine:
|
|
476
|
-
NumberedList:
|
|
477
|
-
One:
|
|
483
|
+
Nine: H1,
|
|
484
|
+
NumberedList: V1,
|
|
485
|
+
One: f1,
|
|
478
486
|
Pencil: Z1,
|
|
479
487
|
PencilSquare: x1,
|
|
480
488
|
Plus: b1,
|
|
@@ -488,20 +496,22 @@ const n = ({
|
|
|
488
496
|
Star: D1,
|
|
489
497
|
StepBack: T1,
|
|
490
498
|
StepForwards: W1,
|
|
491
|
-
Swap:
|
|
492
|
-
SwapSlash:
|
|
493
|
-
Swatch:
|
|
499
|
+
Swap: U1,
|
|
500
|
+
SwapSlash: j1,
|
|
501
|
+
Swatch: O1,
|
|
494
502
|
Table: q1,
|
|
495
|
-
Three:
|
|
496
|
-
Trash:
|
|
503
|
+
Three: P1,
|
|
504
|
+
Trash: N1,
|
|
497
505
|
TrashStrikethrough: Q1,
|
|
498
506
|
Two: z1,
|
|
499
507
|
User: G1,
|
|
500
508
|
UserCheckFill: J1,
|
|
501
509
|
UserMinusFill: K1,
|
|
502
|
-
|
|
510
|
+
UserPlus: X1,
|
|
511
|
+
UserPlusFill: Y1,
|
|
512
|
+
Zero: _1
|
|
503
513
|
};
|
|
504
514
|
export {
|
|
505
|
-
|
|
515
|
+
$1 as Icons
|
|
506
516
|
};
|
|
507
517
|
//# sourceMappingURL=index.js.map
|