@kolking/react-ui 1.0.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/LICENSE +21 -0
- package/README.md +131 -0
- package/dist/Input-Lz3ft8Tp.js +96 -0
- package/dist/ValidationTooltip-BgSwl0hJ.js +30 -0
- package/dist/_commonjsHelpers-B52_cu2H.js +26 -0
- package/dist/components/Button/Button.d.ts +26 -0
- package/dist/components/Button/Button.js +62 -0
- package/dist/components/Button/index.d.ts +1 -0
- package/dist/components/Button/index.js +4 -0
- package/dist/components/Dialog/Dialog.d.ts +10 -0
- package/dist/components/Dialog/Dialog.js +57 -0
- package/dist/components/Dialog/DialogFocusTrap.d.ts +2 -0
- package/dist/components/Dialog/DialogFocusTrap.js +765 -0
- package/dist/components/Dialog/index.d.ts +3 -0
- package/dist/components/Dialog/index.js +12 -0
- package/dist/components/Dialog/useDialog.d.ts +19 -0
- package/dist/components/Dialog/useDialog.js +52 -0
- package/dist/components/Dialog/withDialog.d.ts +11 -0
- package/dist/components/Dialog/withDialog.js +23 -0
- package/dist/components/Fields/Checkbox.d.ts +13 -0
- package/dist/components/Fields/Checkbox.js +28 -0
- package/dist/components/Fields/Field.d.ts +20 -0
- package/dist/components/Fields/Field.js +52 -0
- package/dist/components/Fields/Input.d.ts +11 -0
- package/dist/components/Fields/Input.js +9 -0
- package/dist/components/Fields/Quantity.d.ts +7 -0
- package/dist/components/Fields/Quantity.js +61 -0
- package/dist/components/Fields/Radio.d.ts +11 -0
- package/dist/components/Fields/Radio.js +23 -0
- package/dist/components/Fields/Select.d.ts +7 -0
- package/dist/components/Fields/Select.js +21 -0
- package/dist/components/Fields/Textarea.d.ts +12 -0
- package/dist/components/Fields/Textarea.js +185 -0
- package/dist/components/Fields/ValidationTooltip.d.ts +2 -0
- package/dist/components/Fields/ValidationTooltip.js +6 -0
- package/dist/components/Fields/index.d.ts +8 -0
- package/dist/components/Fields/index.js +20 -0
- package/dist/components/Flex/Flex.d.ts +22 -0
- package/dist/components/Flex/Flex.js +36 -0
- package/dist/components/Flex/index.d.ts +1 -0
- package/dist/components/Flex/index.js +4 -0
- package/dist/components/Heading/Heading.d.ts +12 -0
- package/dist/components/Heading/Heading.js +57 -0
- package/dist/components/Heading/index.d.ts +1 -0
- package/dist/components/Heading/index.js +4 -0
- package/dist/components/Icon/Icon.d.ts +16 -0
- package/dist/components/Icon/Icon.js +125 -0
- package/dist/components/Icon/icons.d.ts +2 -0
- package/dist/components/Icon/icons.js +91 -0
- package/dist/components/Icon/index.d.ts +1 -0
- package/dist/components/Icon/index.js +4 -0
- package/dist/components/Menu/Menu.d.ts +9 -0
- package/dist/components/Menu/Menu.js +77 -0
- package/dist/components/Menu/MenuContext.d.ts +8 -0
- package/dist/components/Menu/MenuContext.js +5 -0
- package/dist/components/Menu/MenuItem.d.ts +7 -0
- package/dist/components/Menu/MenuItem.js +50 -0
- package/dist/components/Menu/index.d.ts +2 -0
- package/dist/components/Menu/index.js +6 -0
- package/dist/components/Notice/Notice.d.ts +15 -0
- package/dist/components/Notice/Notice.js +56 -0
- package/dist/components/Notice/index.d.ts +1 -0
- package/dist/components/Notice/index.js +4 -0
- package/dist/components/Progress/ProgressBar.d.ts +21 -0
- package/dist/components/Progress/ProgressBar.js +47 -0
- package/dist/components/Progress/ProgressCircular.d.ts +25 -0
- package/dist/components/Progress/ProgressCircular.js +71 -0
- package/dist/components/Progress/index.d.ts +2 -0
- package/dist/components/Progress/index.js +6 -0
- package/dist/components/Segmented/Segmented.d.ts +9 -0
- package/dist/components/Segmented/Segmented.js +46 -0
- package/dist/components/Segmented/index.d.ts +1 -0
- package/dist/components/Segmented/index.js +4 -0
- package/dist/components/Spinner/Spinner.d.ts +13 -0
- package/dist/components/Spinner/Spinner.js +31 -0
- package/dist/components/Spinner/index.d.ts +1 -0
- package/dist/components/Spinner/index.js +4 -0
- package/dist/components/Tooltip/Tooltip.d.ts +14 -0
- package/dist/components/Tooltip/Tooltip.js +78 -0
- package/dist/components/Tooltip/index.d.ts +1 -0
- package/dist/components/Tooltip/index.js +4 -0
- package/dist/floating-ui.react-KLg1MUz0.js +22334 -0
- package/dist/index-DyIdU--j.js +45 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.esm-Dkuk1b-q.js +211 -0
- package/dist/index.js +54 -0
- package/dist/styles/_theme-default.scss +142 -0
- package/dist/styles/_theme.scss +40 -0
- package/dist/styles/_utils.scss +118 -0
- package/dist/styles/style.css +1 -0
- package/dist/styles.module-CUhWny5T.js +11 -0
- package/dist/utils/helpers.d.ts +13 -0
- package/dist/utils/helpers.js +34 -0
- package/package.json +79 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { PolymorphicProps } from '../../utils/helpers';
|
|
3
|
+
export type FlexProps<T extends React.ElementType = 'div'> = PolymorphicProps<T, {
|
|
4
|
+
as?: T;
|
|
5
|
+
direction?: React.CSSProperties['flexDirection'];
|
|
6
|
+
gap?: React.CSSProperties['gap'];
|
|
7
|
+
align?: React.CSSProperties['alignItems'];
|
|
8
|
+
justify?: React.CSSProperties['justifyContent'];
|
|
9
|
+
wrap?: React.CSSProperties['flexWrap'];
|
|
10
|
+
marginStart?: React.CSSProperties['marginBlockStart'];
|
|
11
|
+
marginEnd?: React.CSSProperties['marginBlockEnd'];
|
|
12
|
+
}>;
|
|
13
|
+
export declare const Flex: <T extends React.ElementType = "div">(props: {
|
|
14
|
+
as?: T | undefined;
|
|
15
|
+
direction?: React.CSSProperties["flexDirection"];
|
|
16
|
+
gap?: React.CSSProperties["gap"];
|
|
17
|
+
align?: React.CSSProperties["alignItems"];
|
|
18
|
+
justify?: React.CSSProperties["justifyContent"];
|
|
19
|
+
wrap?: React.CSSProperties["flexWrap"];
|
|
20
|
+
marginStart?: React.CSSProperties["marginBlockStart"];
|
|
21
|
+
marginEnd?: React.CSSProperties["marginBlockEnd"];
|
|
22
|
+
} & Omit<React.PropsWithoutRef<React.ComponentProps<T>>, "direction" | "as" | "align" | "wrap" | "justify" | "gap" | "marginStart" | "marginEnd"> & React.RefAttributes<unknown>) => React.ReactElement | null;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { jsx as a } from "react/jsx-runtime";
|
|
2
|
+
import { c as d } from "../../index-DyIdU--j.js";
|
|
3
|
+
import { fixedForwardRef as i, cssProps as p } from "../../utils/helpers.js";
|
|
4
|
+
const y = "Flex_flex_GBHBA", F = {
|
|
5
|
+
flex: y
|
|
6
|
+
};
|
|
7
|
+
function u({
|
|
8
|
+
as: s,
|
|
9
|
+
direction: e = "row",
|
|
10
|
+
gap: l,
|
|
11
|
+
align: o,
|
|
12
|
+
justify: r,
|
|
13
|
+
wrap: f,
|
|
14
|
+
marginStart: n,
|
|
15
|
+
marginEnd: x,
|
|
16
|
+
className: m,
|
|
17
|
+
...t
|
|
18
|
+
}, c) {
|
|
19
|
+
return /* @__PURE__ */ a(
|
|
20
|
+
s ?? "div",
|
|
21
|
+
{
|
|
22
|
+
...t,
|
|
23
|
+
ref: c,
|
|
24
|
+
"data-flex": e,
|
|
25
|
+
className: d(F.flex, m),
|
|
26
|
+
style: {
|
|
27
|
+
...t.style,
|
|
28
|
+
...p({ gap: l, align: o, justify: r, direction: e, wrap: f, marginStart: n, marginEnd: x })
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
const j = i(u);
|
|
34
|
+
export {
|
|
35
|
+
j as Flex
|
|
36
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Flex';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
type HeadingElement = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
|
|
3
|
+
export type HeadingProps = Omit<React.HTMLAttributes<HTMLHeadingElement>, 'title'> & {
|
|
4
|
+
as?: HeadingElement;
|
|
5
|
+
size?: HeadingElement;
|
|
6
|
+
title: React.ReactNode;
|
|
7
|
+
margin?: React.CSSProperties['margin'];
|
|
8
|
+
marginStart?: React.CSSProperties['marginBlockStart'];
|
|
9
|
+
marginEnd?: React.CSSProperties['marginBlockEnd'];
|
|
10
|
+
};
|
|
11
|
+
export declare const Heading: ({ as: Element, size, title, margin, marginStart, marginEnd, className, children, style, ...props }: HeadingProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { jsx as a, jsxs as f } from "react/jsx-runtime";
|
|
2
|
+
import { c as g } from "../../index-DyIdU--j.js";
|
|
3
|
+
import { cssProps as H } from "../../utils/helpers.js";
|
|
4
|
+
const j = "Heading_h1_jZARG", u = "Heading_heading_OG4PS", p = "Heading_h2_juB1Q", x = "Heading_h3_tZEj0", v = "Heading_h4_X927D", z = "Heading_h5_047wq", B = "Heading_h6_52sKy", G = "Heading_accessory_VOBHY", h = {
|
|
5
|
+
h1: j,
|
|
6
|
+
heading: u,
|
|
7
|
+
h2: p,
|
|
8
|
+
h3: x,
|
|
9
|
+
h4: v,
|
|
10
|
+
h5: z,
|
|
11
|
+
h6: B,
|
|
12
|
+
accessory: G
|
|
13
|
+
}, Z = ({
|
|
14
|
+
as: s = "h2",
|
|
15
|
+
size: y = s,
|
|
16
|
+
title: c,
|
|
17
|
+
margin: n,
|
|
18
|
+
marginStart: o,
|
|
19
|
+
marginEnd: e,
|
|
20
|
+
className: d,
|
|
21
|
+
children: i,
|
|
22
|
+
style: r,
|
|
23
|
+
...t
|
|
24
|
+
}) => {
|
|
25
|
+
const _ = `var(--font-size-${y})`;
|
|
26
|
+
return i ? /* @__PURE__ */ f(
|
|
27
|
+
"header",
|
|
28
|
+
{
|
|
29
|
+
...t,
|
|
30
|
+
"data-heading": s,
|
|
31
|
+
className: g(h.heading, d),
|
|
32
|
+
style: {
|
|
33
|
+
...r,
|
|
34
|
+
...H({ fontSize: _, margin: n, marginStart: o, marginEnd: e })
|
|
35
|
+
},
|
|
36
|
+
children: [
|
|
37
|
+
/* @__PURE__ */ a(s, { children: c }),
|
|
38
|
+
/* @__PURE__ */ a("div", { "data-heading-accessory": !0, className: h.accessory, children: i })
|
|
39
|
+
]
|
|
40
|
+
}
|
|
41
|
+
) : /* @__PURE__ */ a(
|
|
42
|
+
s,
|
|
43
|
+
{
|
|
44
|
+
...t,
|
|
45
|
+
"data-heading": s,
|
|
46
|
+
className: g(h[s], d),
|
|
47
|
+
style: {
|
|
48
|
+
...r,
|
|
49
|
+
...H({ fontSize: _, margin: n, marginStart: o, marginEnd: e })
|
|
50
|
+
},
|
|
51
|
+
children: c
|
|
52
|
+
}
|
|
53
|
+
);
|
|
54
|
+
};
|
|
55
|
+
export {
|
|
56
|
+
Z as Heading
|
|
57
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Heading';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { default as iconNames } from './icons';
|
|
3
|
+
type SVGProps = React.SVGProps<SVGSVGElement>;
|
|
4
|
+
type SVGComponent = React.FunctionComponent<SVGProps>;
|
|
5
|
+
type IconName = (typeof iconNames)[number];
|
|
6
|
+
type Size = string | number;
|
|
7
|
+
type Scheme = 'info' | 'warning' | 'error' | 'success' | 'neutral';
|
|
8
|
+
export type IconProps = SVGProps & {
|
|
9
|
+
name?: IconName;
|
|
10
|
+
size?: Size | [Size, Size];
|
|
11
|
+
scheme?: Scheme;
|
|
12
|
+
color?: string;
|
|
13
|
+
svg?: SVGComponent;
|
|
14
|
+
};
|
|
15
|
+
export declare const Icon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
import p, { forwardRef as o } from "react";
|
|
3
|
+
import { jsx as u } from "react/jsx-runtime";
|
|
4
|
+
import { c as f } from "../../index-DyIdU--j.js";
|
|
5
|
+
import { cssProps as E } from "../../utils/helpers.js";
|
|
6
|
+
const x = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 20c5.523 0 10-4.477 10-10S15.523 0 10 0 0 4.477 0 10s4.477 10 10 10Zm0-15.5a1 1 0 0 1 1 1v6.584l2.793-2.791a1 1 0 0 1 1.32-.083l.094.083a1 1 0 0 1 0 1.414L10 15.914l-.707-.707-4.5-4.5a1 1 0 0 1 1.414-1.414L9 12.085V5.5a1 1 0 0 1 .883-.993L10 4.5Z" })), k = o(x), C = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor", strokeLinecap: "round" }, /* @__PURE__ */ e.createElement("circle", { cx: 10, cy: 10, r: 9.5, strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { strokeWidth: 2, d: "m5.5 10 4.5 4.5 4.5-4.5M10 5.5v9" }))), L = o(C), R = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "m3 10 7 7 7-7m-7-7v14" })), Z = o(R), M = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 20c5.523 0 10-4.477 10-10S15.523 0 10 0 0 4.477 0 10s4.477 10 10 10ZM9.293 4.793a1 1 0 0 1 1.414 1.414L7.914 9H14.5a1 1 0 0 1 .993.883L15.5 10a1 1 0 0 1-1 1H7.915l2.792 2.793a1 1 0 0 1 .083 1.32l-.083.094a1 1 0 0 1-1.414 0l-4.5-4.5L4.086 10l.707-.707 4.5-4.5Z" })), S = o(M), B = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor", strokeLinecap: "round" }, /* @__PURE__ */ e.createElement("circle", { cx: 10, cy: 10, r: 9.5, strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { strokeWidth: 2, d: "M10 14.5 5.5 10 10 5.5m4.5 4.5h-9" }))), F = o(B), $ = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "m10 17-7-7 7-7m7 7H3" })), V = o($), A = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 20c5.523 0 10-4.477 10-10S15.523 0 10 0 0 4.477 0 10s4.477 10 10 10ZM9.293 4.793a1 1 0 0 1 1.414 0l4.5 4.5.707.707-5.207 5.207a1 1 0 1 1-1.414-1.414L12.084 11H5.5a1 1 0 0 1-.993-.883L4.5 10a1 1 0 0 1 1-1h6.585L9.293 6.207a1 1 0 0 1-.083-1.32l.083-.094Z" })), H = o(A), W = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor", strokeLinecap: "round" }, /* @__PURE__ */ e.createElement("circle", { cx: 10, cy: 10, r: 9.5, strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { strokeWidth: 2, d: "m10 14.5 4.5-4.5L10 5.5M5.5 10h9" }))), y = o(W), j = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "m10 17 7-7-7-7m-7 7h14" })), O = o(j), P = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 20c5.523 0 10-4.477 10-10S15.523 0 10 0 0 4.477 0 10s4.477 10 10 10Zm0-15.914.707.707 4.5 4.5a1 1 0 1 1-1.414 1.414L11 7.915V14.5a1 1 0 0 1-.883.993L10 15.5a1 1 0 0 1-1-1V7.914l-2.793 2.793a1 1 0 0 1-1.32.083l-.094-.083a1 1 0 0 1 0-1.414l4.5-4.5.707-.707Z" })), b = o(P), _ = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor", strokeLinecap: "round" }, /* @__PURE__ */ e.createElement("circle", { cx: 10, cy: 10, r: 9.5, strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { strokeWidth: 2, d: "M14.5 10 10 5.5 5.5 10m4.5 4.5v-9" }))), D = o(_), z = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "m3 10 7-7 7 7m-7 7V3" })), I = o(z), U = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M3.291 15.571c-.405 0-.72-.094-.949-.282A.926.926 0 0 1 2 14.536c0-.285.083-.561.248-.83.165-.267.372-.53.62-.786s.494-.513.74-.77c.188-.193.335-.447.44-.76a5.73 5.73 0 0 0 .235-1c.051-.354.088-.696.111-1.027.017-1.095.134-2.07.35-2.925.218-.855.558-1.573 1.023-2.154C6.23 3.702 6.843 3.274 7.6 3c.16-.559.453-1.032.88-1.42.43-.386.958-.58 1.585-.58.632 0 1.163.194 1.59.581.428.388.721.861.88 1.42.76.274 1.37.701 1.83 1.283.463.581.803 1.3 1.023 2.154.22.856.337 1.83.355 2.925.022.33.06.673.11 1.026.052.354.13.687.236 1 .105.314.252.568.44.762l.74.77c.248.256.455.518.62.786.165.268.248.544.248.83a.926.926 0 0 1-.342.752c-.228.188-.545.282-.95.282H3.292ZM10.064 19c-.48 0-.91-.105-1.292-.316a2.65 2.65 0 0 1-.923-.83 2.288 2.288 0 0 1-.402-1.111h5.242c-.04.399-.175.77-.406 1.111a2.61 2.61 0 0 1-.92.83c-.382.21-.815.316-1.3.316Z" })), T = o(U), N = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 1.5a4 4 0 0 0-4 4h8a4 4 0 0 0-4-4Zm9 9h-3V7.923l2.217-2.216a1 1 0 0 0-1.414-1.414L14.587 6.51h-9.16L3.21 4.293a1 1 0 0 0-1.413 1.414L4 7.92v2.577H1a1 1 0 0 0 0 2h3a5.94 5.94 0 0 0 .427 2.203.94.94 0 0 0-.134.09l-2.83 2.83a1 1 0 0 0 1.414 1.413l2.6-2.6A6 6 0 0 0 9 18.413V8.5h2v9.913a6 6 0 0 0 3.52-1.976l2.6 2.6a1 1 0 0 0 1.413-1.414l-2.83-2.83a.94.94 0 0 0-.133-.09c.282-.7.428-1.448.43-2.203h3a1 1 0 0 0 0-2Z" })), G = o(N), K = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M15 1a1 1 0 0 1 1 1v1h.5A1.5 1.5 0 0 1 18 4.5v13a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 2 17.5v-13A1.5 1.5 0 0 1 3.5 3H4V2a1 1 0 1 1 2 0v1h8V2a1 1 0 0 1 1-1Zm1.75 7H3.25v9.25a.5.5 0 0 0 .5.5h12.5a.5.5 0 0 0 .5-.5V8ZM13 12a2 2 0 1 1 0 4 2 2 0 0 1 0-4Z" })), q = o(K), J = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M15 1a1 1 0 0 1 1 1v1h.5A1.5 1.5 0 0 1 18 4.5v13a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 2 17.5v-13A1.5 1.5 0 0 1 3.5 3H4V2a1 1 0 1 1 2 0v1h8V2a1 1 0 0 1 1-1Zm1.75 7H3.25v9.25a.5.5 0 0 0 .5.5h12.5a.5.5 0 0 0 .5-.5V8ZM7 14v2H5v-2h2Zm4 0v2H9v-2h2Zm4 0v2h-2v-2h2Zm-8-4v2H5v-2h2Zm4 0v2H9v-2h2Zm4 0v2h-2v-2h2Z" })), Q = o(J), X = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M17.328 18C19.106 18 20 17.115 20 15.36V6.45c0-1.753-.894-2.63-2.672-2.63h-1.983c-.664 0-.877-.136-1.251-.562l-.69-.766c-.425-.468-.86-.723-1.736-.723H8.272c-.876 0-1.31.255-1.736.723l-.68.766c-.375.417-.588.562-1.252.562H2.672C.894 3.821 0 4.698 0 6.451v8.91C0 17.115.894 18 2.672 18h14.656ZM10 15.276a4.631 4.631 0 0 1-4.638-4.655A4.631 4.631 0 0 1 10 5.966a4.633 4.633 0 0 1 4.647 4.655A4.633 4.633 0 0 1 10 15.276Zm0-8.017a3.358 3.358 0 0 1 3.362 3.362 3.358 3.358 0 1 1-6.715 0A3.35 3.35 0 0 1 10 7.26Zm6.12-.817c.578 0 1.054.468 1.054 1.056 0 .578-.476 1.046-1.055 1.046a1.053 1.053 0 0 1-1.055-1.046c0-.588.476-1.056 1.055-1.056Z" })), Y = o(X), e0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M11.352 6.5c-.79 0-4.172.078-6.352 3.36V6.5c0-2.07-1.68-3.75-3.75-3.75C.562 2.75 0 3.313 0 4c0 .688.562 1.25 1.25 1.25S2.5 5.812 2.5 6.5v10C2.5 17.877 3.623 19 5 19h6.875c.347 0 .625-.278.625-.59v-.66c0-.688-.562-1.25-1.25-1.25H10l5-3.75v5.625c0 .347.278.625.625.625h1.25a.623.623 0 0 0 .625-.625v-8.05c-.4.102-.816.175-1.25.175a5.006 5.006 0 0 1-4.898-4ZM17.5 2.75H15L12.5.25V5.5c0 2.07 1.68 3.715 3.75 3.715C18.32 9.215 20 7.57 20 5.5V.25l-2.5 2.5Zm-2.813 3.125a.623.623 0 0 1-.624-.625c0-.347.278-.625.624-.625.347 0 .626.278.626.625a.622.622 0 0 1-.626.625Zm3.126 0a.623.623 0 0 1-.625-.625c0-.347.278-.625.625-.625.346 0 .625.278.625.625a.622.622 0 0 1-.625.625Z" })), t0 = o(e0), r0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0Zm5.207 6.793a1 1 0 0 0-1.414 0L9 11.585 7.207 9.793a1 1 0 1 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.414 0l5.5-5.5a1 1 0 0 0 0-1.414Z" })), o0 = o(r0), s0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }, /* @__PURE__ */ e.createElement("circle", { cx: 10, cy: 10, r: 9.5 }), /* @__PURE__ */ e.createElement("path", { strokeWidth: 2, d: "M6.5 10.5 9 13l5.5-5.5" }))), n0 = o(s0), l0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M5.5 10 9 13.5 15.5 7" })), c0 = o(l0), a0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "m12.5 4-6 6 6 6" })), i0 = o(a0), w0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "m8 4 6 6-6 6" })), v0 = o(w0), g0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0Zm0 3.5a1 1 0 0 0-1 1v6.015l.419.299 3.5 2.5a1 1 0 0 0 1.395-.233l.066-.106a1 1 0 0 0-.299-1.289L11 9.485V4.5a1 1 0 0 0-1-1Z" })), m0 = o(g0), d0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor", strokeLinecap: "round" }, /* @__PURE__ */ e.createElement("circle", { cx: 10, cy: 10, r: 9.5, strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { strokeWidth: 2, d: "M10 4.5V10l3.5 2.5" }))), h0 = o(d0), p0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "m15.5 4.5-11 11m0-11 11 11" })), u0 = o(p0), f0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "M8 18v-6H2m6 0-6 6M12 2v6h6m-6 0 6-6" })), E0 = o(f0), x0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0ZM7.707 6.293a1 1 0 0 0-1.414 0l-.078.087a1 1 0 0 0 .078 1.327L8.586 10l-2.293 2.294a1 1 0 0 0 0 1.414l.087.078a1 1 0 0 0 1.327-.078L10 11.413l2.293 2.294a1 1 0 0 0 1.414 0l.078-.087a1 1 0 0 0-.078-1.327l-2.293-2.294 2.293-2.292a1 1 0 0 0 0-1.414l-.087-.078a1 1 0 0 0-1.327.078L10 8.585Z" })), k0 = o(x0), C0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }, /* @__PURE__ */ e.createElement("circle", { cx: 10, cy: 10, r: 9.5 }), /* @__PURE__ */ e.createElement("path", { strokeWidth: 2, d: "m13 7-6 6m0-6 6 6" }))), L0 = o(C0), R0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "m13.5 6.5-7 7m0-7 7 7" })), Z0 = o(R0), M0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor", strokeLinecap: "round" }, /* @__PURE__ */ e.createElement("path", { strokeWidth: 1.5, d: "m4.5 6.75.458 10.543a1 1 0 0 0 1 .957h8.085a1 1 0 0 0 .999-.957L15.5 6.75h0M2.75 4.25h14.5" }), /* @__PURE__ */ e.createElement("path", { d: "M10 7.5v8.25m2.5-8.25-.25 8.25M7.5 7.5l.25 8.25m-.5-11.5.167-1.84a1 1 0 0 1 .996-.91h3.174a1 1 0 0 1 .996.91l.167 1.84h0" }))), S0 = o(M0), B0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd" }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", fillRule: "nonzero", d: "m16 6-.445 11.558A1.5 1.5 0 0 1 14.057 19H5.943a1.5 1.5 0 0 1-1.498-1.442L4 6h12Zm-6 2a.5.5 0 0 0-.5.5v8a.5.5 0 1 0 1 0v-8A.5.5 0 0 0 10 8Zm3.016 0a.5.5 0 0 0-.516.484l-.25 8a.5.5 0 1 0 1 .032l.25-8A.5.5 0 0 0 13.016 8ZM6.984 8a.5.5 0 0 0-.484.516l.25 8a.5.5 0 1 0 1-.032l-.25-8A.5.5 0 0 0 6.984 8Z" }), /* @__PURE__ */ e.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.5, d: "M2.75 4.25h14.5" }), /* @__PURE__ */ e.createElement("path", { stroke: "currentColor", strokeLinecap: "round", d: "m7.25 4.25.167-1.84a1 1 0 0 1 .996-.91h3.174a1 1 0 0 1 .996.91l.167 1.84h0" }))), F0 = o(B0), $0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor" }, /* @__PURE__ */ e.createElement("circle", { cx: 10, cy: 10, r: 8, strokeWidth: 2 }), /* @__PURE__ */ e.createElement("path", { strokeWidth: 2.25, d: "m15.5 4.5-11 11" }))), V0 = o($0), A0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 12 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "m4 4 6 6-6 6" })), H0 = o(A0), W0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2 }, /* @__PURE__ */ e.createElement("path", { strokeLinejoin: "round", d: "M2 14v4h16v-4" }), /* @__PURE__ */ e.createElement("path", { d: "m6 10 4 4 4-4m-4-7v11" }))), y0 = o(W0), j0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 12 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "m2 9 4 3 4-3" })), O0 = o(j0), P0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "m11.14 2.292 7.216 5.01c.403.28.644.741.644 1.233V17.5a1.5 1.5 0 0 1-1.5 1.5h-15A1.5 1.5 0 0 1 1 17.5V8.535c0-.492.24-.952.644-1.233l7.215-5.01a2 2 0 0 1 2.282 0ZM9.413 12.376l-5.93 5.374h13.035l-5.93-5.374a.875.875 0 0 0-1.175 0Zm8.338-3.274-4.341 4.144 4.341 3.934V9.102Zm-15.5.001v8.076l4.34-3.933-4.34-4.143Zm7.322-5.784L2.874 7.97l4.645 4.434 1.054-.954a2.125 2.125 0 0 1 2.854 0l1.053.954 4.645-4.434-6.697-4.651a.75.75 0 0 0-.856 0Z" })), b0 = o(P0), _0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "m11.14 2.292 7.216 5.01c.403.28.644.741.644 1.233V17.5a1.5 1.5 0 0 1-1.5 1.5h-15A1.5 1.5 0 0 1 1 17.5V8.535c0-.492.24-.952.644-1.233l7.215-5.01a2 2 0 0 1 2.282 0ZM9.573 3.32 2.358 8.33a.25.25 0 0 0-.107.206L7 12.5 2 18l6.683-5.848a2 2 0 0 1 2.634 0L18 18l-5-5.5 4.75-3.965a.25.25 0 0 0-.107-.206l-7.215-5.01a.75.75 0 0 0-.856 0Z" })), D0 = o(_0), z0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0Zm-.001 12.78c-.637 0-1.209.515-1.209 1.209 0 .694.583 1.209 1.209 1.209.615 0 1.209-.504 1.209-1.21 0-.704-.583-1.208-1.21-1.208ZM10 4.8c-.705 0-1.224.504-1.2 1.05l.174 4.9c.025.546.383.85 1.038.85.618 0 .99-.293 1.014-.85l.173-4.9c.025-.546-.507-1.05-1.199-1.05Z" })), I0 = o(z0), U0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd" }, /* @__PURE__ */ e.createElement("circle", { cx: 10, cy: 10, r: 9.5, stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { fill: "currentColor", fillRule: "nonzero", d: "M10.012 11.6c-.655 0-1.013-.304-1.038-.85L8.8 5.85c-.024-.546.495-1.05 1.2-1.05.692 0 1.224.504 1.2 1.05l-.174 4.9c-.025.557-.396.85-1.014.85ZM10 15.198a1.218 1.218 0 0 1-1.209-1.21c0-.693.572-1.208 1.209-1.208.626 0 1.209.504 1.209 1.209 0 .705-.594 1.209-1.21 1.209Z" }))), T0 = o(U0), N0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "M18 8V2h-6m6 0-6 6M2 12v6h6m-6 0 6-6" })), G0 = o(N0), K0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinejoin: "round", strokeWidth: 2, d: "M2 8V2h6m4 0h6v6M2 12v6h6m4 0h6v-6" })), q0 = o(K0), J0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M19.688 8.746c-.16-.102-1.422-.856-1.922-1.086l-.62-1.5c.184-.496.538-1.886.6-2.128a.668.668 0 0 0-.18-.62l-.978-.972a.664.664 0 0 0-.62-.18c-.184.042-1.6.4-2.128.6l-1.5-.62c-.218-.48-.952-1.71-1.086-1.922A.664.664 0 0 0 10.688 0H9.312a.67.67 0 0 0-.566.312c-.102.16-.856 1.422-1.086 1.922l-1.5.62c-.496-.184-1.886-.538-2.128-.6a.668.668 0 0 0-.62.18l-.972.978a.664.664 0 0 0-.18.62c.042.184.4 1.6.6 2.128l-.62 1.5c-.48.218-1.71.952-1.922 1.086A.664.664 0 0 0 0 9.312v1.374c0 .23.118.443.312.566.16.102 1.422.856 1.922 1.086l.62 1.5c-.184.496-.538 1.886-.6 2.128a.668.668 0 0 0 .18.62l.972.972a.664.664 0 0 0 .62.18c.184-.042 1.6-.4 2.128-.6l1.5.62c.218.48.952 1.71 1.086 1.922.121.2.338.321.572.32h1.374a.67.67 0 0 0 .566-.312c.102-.16.856-1.422 1.086-1.922l1.5-.62c.496.184 1.886.538 2.128.6a.668.668 0 0 0 .62-.18l.972-.972a.664.664 0 0 0 .18-.62c-.042-.184-.4-1.6-.6-2.128l.62-1.5c.48-.218 1.71-.952 1.922-1.086a.664.664 0 0 0 .32-.572V9.312a.66.66 0 0 0-.312-.566ZM9.996 14.8a4.8 4.8 0 1 1 4.804-4.796A4.807 4.807 0 0 1 9.996 14.8Z" })), Q0 = o(J0), X0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M9.99 0C15.46 0 20 4.54 20 10c0 5.47-4.53 10-10 10-5.46 0-10-4.53-10-10C0 4.54 4.53 0 9.99 0Zm.008 12.937c-.62 0-1.122.476-1.122 1.082 0 .606.503 1.081 1.122 1.081.627 0 1.13-.475 1.13-1.081s-.503-1.082-1.13-1.082ZM10.26 4.9c-1.48 0-2.583.585-3.023 1.495a1.704 1.704 0 0 0-.207.82c0 .523.337.86.882.86.42 0 .73-.193.902-.634.22-.613.675-.943 1.35-.943.757 0 1.28.468 1.28 1.143 0 .634-.268.978-1.156 1.508-.813.476-1.233 1.013-1.233 1.826v.096c0 .565.344.964.93.964.489 0 .757-.268.86-.73.09-.578.297-.875 1.213-1.405.97-.572 1.474-1.28 1.474-2.32 0-1.606-1.316-2.68-3.272-2.68Z" })), Y0 = o(X0), e1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd" }, /* @__PURE__ */ e.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", d: "M10 19.5c5.197 0 9.5-4.303 9.5-9.5 0-5.188-4.312-9.5-9.51-9.5C4.804.5.5 4.812.5 10c0 5.197 4.312 9.5 9.5 9.5Z" }), /* @__PURE__ */ e.createElement("path", { fill: "currentColor", fillRule: "nonzero", d: "M9.985 12.035c.489 0 .757-.268.86-.73.09-.578.297-.875 1.213-1.405.97-.572 1.474-1.28 1.474-2.32 0-1.606-1.316-2.68-3.272-2.68-1.48 0-2.583.585-3.023 1.495a1.704 1.704 0 0 0-.207.82c0 .523.337.86.882.86.42 0 .73-.193.902-.634.22-.613.675-.943 1.35-.943.757 0 1.28.468 1.28 1.143 0 .634-.268.978-1.156 1.508-.813.476-1.233 1.013-1.233 1.826v.096c0 .565.344.964.93.964Zm.013 3.065c.627 0 1.13-.475 1.13-1.081s-.503-1.082-1.13-1.082c-.62 0-1.122.476-1.122 1.082 0 .606.503 1.081 1.122 1.081Z" }))), t1 = o(e1), r1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0Zm0 8.5a1 1 0 0 0-1 1V14a1 1 0 0 0 2 0V9.5a1 1 0 0 0-1-1Zm0-3.7a1.2 1.2 0 1 0 0 2.4 1.2 1.2 0 0 0 0-2.4Z" })), o1 = o(r1), s1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd" }, /* @__PURE__ */ e.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", d: "M10 19.5c5.197 0 9.5-4.303 9.5-9.5 0-5.188-4.312-9.5-9.51-9.5C4.804.5.5 4.812.5 10c0 5.197 4.312 9.5 9.5 9.5Z" }), /* @__PURE__ */ e.createElement("path", { fill: "currentColor", fillRule: "nonzero", d: "M10 8.5a1 1 0 0 1 1 1V14a1 1 0 0 1-2 0V9.5a1 1 0 0 1 1-1Zm0-1.3a1.2 1.2 0 1 0 0-2.4 1.2 1.2 0 0 0 0 2.4Z" }))), n1 = o(s1), l1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 19c4-4.667 6-8.667 6-12A6 6 0 1 0 4 7c0 3.333 2 7.333 6 12ZM6.97 3.97a.75.75 0 0 1 1.06 0L10 5.939l1.97-1.97a.75.75 0 0 1 .976-.072l.084.073a.75.75 0 0 1 0 1.06L11.06 7l1.97 1.97a.75.75 0 0 1 .073.976l-.073.084a.75.75 0 0 1-1.06 0L10 8.06l-1.97 1.97a.75.75 0 0 1-.976.073l-.084-.073a.75.75 0 0 1 0-1.06L8.939 7l-1.97-1.97a.75.75 0 0 1-.072-.976l.073-.084Z" })), c1 = o(l1), a1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 1a6 6 0 0 1 6 6c0 3.333-2 7.333-6 12-4-4.667-6-8.667-6-12a6 6 0 0 1 6-6Zm0 3.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5Z" })), i1 = o(a1), w1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd" }, /* @__PURE__ */ e.createElement("rect", { width: 14, height: 10, x: 3, y: 9, fill: "currentColor", fillRule: "nonzero", rx: 1.5 }), /* @__PURE__ */ e.createElement("path", { stroke: "currentColor", strokeWidth: 2, d: "M6 9V5a4 4 0 1 1 8 0" }))), v1 = o(w1), g1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd" }, /* @__PURE__ */ e.createElement("rect", { width: 14, height: 10, x: 3, y: 9, fill: "currentColor", fillRule: "nonzero", rx: 1.5 }), /* @__PURE__ */ e.createElement("path", { stroke: "currentColor", strokeWidth: 2, d: "M6 9V6a4 4 0 1 1 8 0v3" }))), m1 = o(g1), d1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M1.978 18.207c-.312 0-.553-.087-.723-.26-.17-.173-.255-.421-.255-.744V5.563c0-.294.06-.546.182-.757.12-.21.308-.388.562-.532l4.5-2.562a1.71 1.71 0 0 1 .892-.242c.317 0 .608.08.874.242l4.699 2.882 4.586-2.553a2.63 2.63 0 0 1 .39-.169c.115-.037.228-.056.337-.056.312 0 .553.087.723.26.17.173.255.418.255.735v11.657c0 .289-.06.538-.182.749-.12.21-.311.388-.57.532l-4.527 2.57c-.26.15-.548.225-.865.225a1.97 1.97 0 0 1-.97-.26l-4.785-2.682-4.405 2.37c-.138.082-.265.14-.38.178a1.089 1.089 0 0 1-.338.057Zm4.56-3.981V3.175a7.085 7.085 0 0 0-.151.086 2.68 2.68 0 0 1-.16.087L2.679 5.425a.544.544 0 0 0-.22.203.552.552 0 0 0-.066.273v10.376c0 .092.038.138.113.138a.332.332 0 0 0 .13-.043l3.902-2.146Zm1.394.138 3.755 2.12c.064.035.127.068.19.1.064.032.128.065.191.1V5.865l-3.86-2.354a3.485 3.485 0 0 0-.276-.155v11.007Zm5.53 2.475.194-.104a2.62 2.62 0 0 0 .195-.112l3.47-2.016a.533.533 0 0 0 .22-.208.577.577 0 0 0 .066-.277V3.746c0-.046-.01-.08-.03-.104-.02-.023-.051-.034-.091-.034a.337.337 0 0 0-.122.043L13.462 5.78v11.06Z" })), h1 = o(d1), p1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M1 17.21V5.564c0-.289.062-.538.186-.749.124-.21.316-.388.576-.532l4.101-2.354a3.4 3.4 0 0 1 .243-.134c.086-.043.167-.082.242-.117v14.34L2.713 17.98c-.27.15-.513.225-.726.225-.312 0-.554-.087-.727-.26-.173-.173-.26-.418-.26-.735Zm6.534-1.358V1.53a1.676 1.676 0 0 1 .485.199l4.274 2.614v14.123a1.438 1.438 0 0 1-.194-.07 4.199 4.199 0 0 1-.204-.095l-4.361-2.449Zm5.936 2.588V4.178l3.817-2.12c.27-.15.513-.225.726-.225.312 0 .554.086.727.26.173.173.26.418.26.735v11.657c0 .288-.062.538-.186.748-.124.21-.316.388-.576.533l-4.508 2.561a1.49 1.49 0 0 1-.126.065.742.742 0 0 1-.134.048Z" })), u1 = o(p1), f1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeWidth: 2, d: "M3 10h14M3 15h14M3 5h14" })), E1 = o(f1), x1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0Zm4.5 9h-9a1 1 0 1 0 0 2h9a1 1 0 0 0 0-2Z" })), k1 = o(x1), C1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }, /* @__PURE__ */ e.createElement("circle", { cx: 10, cy: 10, r: 9.5 }), /* @__PURE__ */ e.createElement("path", { strokeWidth: 2, d: "M5.5 10h9" }))), L1 = o(C1), R1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M4.5 10h11" })), Z1 = o(R1), M1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M11.695 19c.725 0 1.216-.533 1.524-1.333L18.8 3.057c.133-.341.2-.65.2-.916C19 1.441 18.559 1 17.859 1c-.275 0-.583.067-.925.2L2.291 6.797C1.541 7.081 1 7.572 1 8.305c0 .841.608 1.216 1.458 1.474l3.964 1.225c.684.208 1.1.208 1.608-.25l9.537-8.704c.134-.125.3-.109.392-.017.1.1.116.266-.009.4l-8.695 9.529c-.417.458-.459.966-.267 1.607l1.216 3.923c.267.875.641 1.508 1.491 1.508Z" })), S1 = o(M1), B1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M1.349 13.562c.29 1.592 1.223 2.243 2.847 1.969l.165-.031v.07c0 1.624.815 2.432 2.462 2.432h10.714c1.632 0 2.463-.816 2.463-2.432V8.174c0-1.616-.831-2.431-2.463-2.431h-1.686l-.384-2.18c-.29-1.593-1.232-2.252-2.847-1.97L2.063 3.454c-1.608.29-2.283 1.23-2 2.823l1.286 7.286Zm1.231-.282L1.317 6.127c-.14-.808.212-1.302.989-1.435l10.51-1.851c.76-.126 1.278.204 1.42 1.004l.336 1.898H6.823c-1.647 0-2.462.815-2.462 2.431v6.047L4 14.284c-.777.133-1.279-.204-1.42-1.004Zm3.043-5.035c0-.816.432-1.24 1.216-1.24h10.675c.776 0 1.223.424 1.223 1.24v6.11l-2.933-2.77a1.542 1.542 0 0 0-2.118-.007l-3.168 2.808-1.255-1.137c-.306-.275-.628-.4-.965-.4-.306 0-.596.125-.902.384l-1.773 1.545V8.245Zm4.33 3.513c.918 0 1.663-.76 1.663-1.678 0-.902-.745-1.663-1.663-1.663s-1.663.76-1.663 1.663c0 .918.745 1.678 1.663 1.678Z" })), F1 = o(B1), $1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M11.017 15.4a.986.986 0 0 1-.727-.313c-.205-.209-.308-.513-.308-.912v-8.35c0-.399.103-.703.308-.912a.984.984 0 0 1 .726-.313c.144 0 .28.022.41.065.128.043.263.107.407.191l6.936 4.082c.252.149.437.31.555.484.117.174.176.365.176.574 0 .212-.06.407-.18.585-.12.177-.304.338-.55.481l-6.937 4.083a2.231 2.231 0 0 1-.407.19 1.264 1.264 0 0 1-.409.066Zm-9.476 0a.993.993 0 0 1-.733-.313C.603 14.878.5 14.574.5 14.175v-8.35c0-.399.102-.703.307-.912A.991.991 0 0 1 1.54 4.6c.14 0 .275.022.403.065.128.043.264.107.407.191l6.937 4.082c.252.149.437.31.555.484a1.035 1.035 0 0 1-.001 1.159c-.119.177-.303.338-.554.481L2.35 15.145a2.027 2.027 0 0 1-.403.19 1.26 1.26 0 0 1-.406.066Z" })), V1 = o($1), A1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M7.086 19c1.03 0 1.55-.531 1.55-1.55V2.55c0-1.052-.52-1.54-1.55-1.55H4.55C3.53 1 3 1.531 3 2.55v14.9C2.99 18.47 3.52 19 4.55 19h2.536Zm8.36 0c1.018 0 1.55-.531 1.55-1.55V2.55c0-1.052-.532-1.55-1.55-1.55H12.91c-1.03 0-1.55.531-1.55 1.55v14.9c0 1.019.52 1.55 1.55 1.55h2.535Z" })), H1 = o(A1), W1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M4.921 19c.443 0 .814-.154 1.287-.422l12.13-7.033c.897-.515 1.247-.907 1.247-1.545 0-.638-.35-1.03-1.246-1.545L6.209 1.432C5.734 1.154 5.363 1 4.92 1c-.833 0-1.42.638-1.42 1.658v14.684c0 1.02.587 1.658 1.421 1.658Z" })), y1 = o(W1), j1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M8.983 15.4a.987.987 0 0 0 .727-.313c.205-.209.308-.513.308-.912v-8.35c0-.399-.103-.703-.308-.912a.984.984 0 0 0-.726-.313c-.144 0-.28.022-.41.065a2.204 2.204 0 0 0-.407.191L1.231 8.938c-.252.149-.437.31-.555.484a1.004 1.004 0 0 0-.176.574c0 .212.06.407.18.585.12.177.304.338.55.481l6.937 4.083c.143.083.279.147.407.19.128.044.264.066.409.066Zm9.476 0a.993.993 0 0 0 .733-.313c.205-.209.308-.513.308-.912v-8.35c0-.399-.102-.703-.307-.912a.991.991 0 0 0-.733-.313c-.14 0-.275.022-.403.065a2.211 2.211 0 0 0-.407.191l-6.937 4.082c-.252.149-.437.31-.555.484a1.035 1.035 0 0 0 .001 1.159c.119.177.303.338.554.481l6.937 4.083c.138.083.273.147.403.19.13.044.266.066.406.066Z" })), O1 = o(j1), P1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M2.923 1h14.154c.669 0 .911.07 1.156.2.244.131.436.323.567.567.13.245.2.487.2 1.156v14.154c0 .669-.07.911-.2 1.156a1.371 1.371 0 0 1-.567.567c-.245.13-.487.2-1.156.2H2.923c-.669 0-.911-.07-1.156-.2a1.363 1.363 0 0 1-.567-.567c-.13-.245-.2-.487-.2-1.156V2.923c0-.669.07-.911.2-1.156.131-.244.323-.436.567-.567.245-.13.487-.2 1.156-.2Z" })), b1 = o(P1), _1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0Zm0 5-.117.007A1 1 0 0 0 9 6v2.999L6 9a1 1 0 0 0-1 1l.007.117A1 1 0 0 0 6 11l3-.001V14a1 1 0 0 0 1 1l.117-.007A1 1 0 0 0 11 14v-3.001L14 11a1 1 0 0 0 1-1l-.007-.117A1 1 0 0 0 14 9l-3-.001V6a1 1 0 0 0-1-1Z" })), D1 = o(_1), z1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }, /* @__PURE__ */ e.createElement("circle", { cx: 10, cy: 10, r: 9.5 }), /* @__PURE__ */ e.createElement("path", { strokeWidth: 2, d: "M10 6v8m-4-4h8" }))), I1 = o(z1), U1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M10 5.05v9.9M5.05 10h9.9" })), T1 = o(U1), N1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M16.5 4A2.5 2.5 0 0 1 19 6.5v8a.5.5 0 0 1-.5.5H16v4H4v-4H1.5a.5.5 0 0 1-.5-.5v-8A2.5 2.5 0 0 1 3.5 4h13ZM15 11H5v7h10v-7Zm1.482-5.048a1.15 1.15 0 1 0-.965 2.088 1.15 1.15 0 0 0 .965-2.088ZM4.5 1h11a.5.5 0 0 1 .5.5V3H4V1.5a.5.5 0 0 1 .5-.5Z" })), G1 = o(N1), K1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd" }, /* @__PURE__ */ e.createElement("circle", { cx: 10, cy: 10, r: 9.5, stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { fill: "currentColor", fillRule: "nonzero", d: "M10 13.333c3.58 0 6.5 1.411 6.66 3.181l.007.174A9.408 9.408 0 0 1 10 19.444a9.415 9.415 0 0 1-6.667-2.755v-.022c0-1.841 2.985-3.334 6.667-3.334Zm0-1.657c1.882.02 3.363-1.588 3.363-3.696 0-1.98-1.48-3.627-3.363-3.627C8.118 4.353 6.627 6 6.637 7.98c.01 2.108 1.48 3.677 3.363 3.696Z" }))), q1 = o(K1), J1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0Zm0 13.333c-3.321 0-6.075 1.215-6.583 2.804A8.975 8.975 0 0 0 10 19a8.974 8.974 0 0 0 6.583-2.863c-.508-1.59-3.262-2.804-6.583-2.804Zm0-8.98C8.118 4.353 6.627 6 6.637 7.98c.01 2.108 1.48 3.677 3.363 3.696 1.882.02 3.363-1.588 3.363-3.696 0-1.98-1.48-3.627-3.363-3.627Z" })), Q1 = o(J1), X1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0Zm.793 4.293a1 1 0 0 0 0 1.414L12.086 7H9a4 4 0 0 0-3.995 3.8L5 11a4.541 4.541 0 0 0 3.795 4.48l.04.006a1 1 0 1 0 .33-1.972l-.041-.007A2.541 2.541 0 0 1 7 11a2 2 0 0 1 2-2h3.085l-1.292 1.293a1 1 0 0 0 1.414 1.414L15.914 8l-.707-.707-3-3a1 1 0 0 0-1.414 0Z" })), Y1 = o(X1), ee = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor", strokeLinecap: "round" }, /* @__PURE__ */ e.createElement("circle", { cx: 10, cy: 10, r: 9.5, strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { strokeLinejoin: "round", strokeWidth: 2, d: "M14.5 8H9a3 3 0 0 0-3 3 3.541 3.541 0 0 0 2.96 3.493L9 14.5h0" }), /* @__PURE__ */ e.createElement("path", { strokeWidth: 2, d: "m11.5 11 3-3-3-3" }))), te = o(ee), re = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd" }, /* @__PURE__ */ e.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "M5.808 15.607a7.002 7.002 0 0 0 11.117-4.582m-2.718-6.62a7.001 7.001 0 0 0-11.14 4.62" }), /* @__PURE__ */ e.createElement("path", { fill: "currentColor", fillRule: "nonzero", d: "m17.248 7.702-6.187-.884 5.303-5.303.884 6.187ZM2.752 12.298l.884 6.187 5.303-5.303-6.187-.884Z" }))), oe = o(re), se = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "m2 7 4-4 4 4m-4 7V3m4 10 4 4 4-4m-4-7v11" })), ne = o(se), le = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor" }, /* @__PURE__ */ e.createElement("circle", { cx: 8.5, cy: 8.5, r: 6.5, strokeWidth: 2 }), /* @__PURE__ */ e.createElement("path", { strokeLinecap: "round", strokeWidth: 3, d: "m18 18-4.5-4.5" }))), ce = o(le), ae = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10.005 1a2.525 2.525 0 0 1 .841.159 57.1 57.1 0 0 1 1.12.38c.495.172 1.024.36 1.588.563.564.203 1.093.396 1.588.577.494.181.868.325 1.12.431.416.176.726.374.93.596.206.222.308.583.308 1.083v6.754c0 .807-.121 1.512-.364 2.115-.242.604-.63 1.165-1.162 1.684-.533.519-1.239 1.052-2.118 1.6a68.453 68.453 0 0 1-3.237 1.87c-.113.063-.225.11-.335.141a1.07 1.07 0 0 1-.28.047c-.075 0-.168-.016-.278-.047a1.602 1.602 0 0 1-.336-.14 73.498 73.498 0 0 1-3.237-1.881c-.879-.547-1.586-1.08-2.122-1.6-.535-.519-.925-1.078-1.167-1.679-.243-.6-.364-1.303-.364-2.11V4.789c0-.5.106-.862.317-1.088.21-.225.518-.422.921-.59.259-.107.633-.252 1.125-.437.491-.184 1.02-.381 1.588-.59.567-.21 1.096-.4 1.588-.568a18.128 18.128 0 0 1 1.53-.464c.146-.035.29-.052.436-.052Zm0 1.25a.628.628 0 0 0-.146.018 17.157 17.157 0 0 0-1.414.43c-.482.166-1.003.352-1.561.558a324.9 324.9 0 0 0-1.582.589c-.48.18-.844.321-1.081.419-.252.105-.414.209-.493.292.035-.036.026.006.023.152l-.001 6.835c0 .654.094 1.2.273 1.642.175.432.463.848.878 1.25.466.451 1.104.932 1.913 1.436.858.534 1.92 1.15 3.18 1.847l.01.005.015-.007a71.34 71.34 0 0 0 2.883-1.655l.294-.181c.807-.503 1.443-.983 1.905-1.433.412-.402.7-.819.875-1.255.18-.446.274-.994.274-1.649V4.789c0-.184-.014-.26.01-.248l-.028-.027a1.895 1.895 0 0 0-.456-.252 27.88 27.88 0 0 0-1.064-.41l-1.167-.424-.828-.298a141.022 141.022 0 0 0-1.99-.694l-.323-.107a1.297 1.297 0 0 0-.4-.079Zm0 2.75c.675 0 1.223.233 1.643.7.42.466.63 1.078.63 1.836v.953c.481.04.722.34.722.9v3.262c0 .606-.288.909-.863.909H7.863c-.575 0-.863-.303-.863-.91V9.39c0-.56.24-.86.722-.901v-.953c0-.758.209-1.37.626-1.837.417-.466.97-.699 1.656-.699Zm0 .883c-.412 0-.74.143-.987.429-.247.285-.37.664-.37 1.136v1.023h2.713V7.448c0-.472-.125-.85-.374-1.136-.25-.286-.577-.429-.983-.429Z" })), ie = o(ae), we = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M6.5 15a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm8 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3ZM3.75 2c.38 0 .7.284.745.661L4.653 4H17.25c.42 0 .75.342.75.748l-.007.103-.632 4.635A1.75 1.75 0 0 1 15.627 11l-10.14-.001.153 1.28a.25.25 0 0 0 .187.213l.061.008H15.5a.75.75 0 1 1 0 1.5H5.888a1.75 1.75 0 0 1-1.738-1.543L3.084 3.5H.75a.75.75 0 0 1-.743-.648L0 2.75A.75.75 0 0 1 .75 2h3Zm12.64 3.499H4.832l.476 4 10.32.001a.25.25 0 0 0 .231-.157l.016-.06.515-3.784Z" })), ve = o(we), ge = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M5 6h10l-5 8z" })), me = o(ge), de = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M14 5v10l-8-5z" })), he = o(de), pe = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M6 5v10l8-5z" })), ue = o(pe), fe = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M5 14h10l-5-8z" })), Ee = o(fe), xe = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0Zm-.793 4.293a1 1 0 0 0-1.414 0l-3 3L4.086 8l3.707 3.707a1 1 0 1 0 1.414-1.414L7.915 9H11a2 2 0 0 1 2 2 2.541 2.541 0 0 1-2.124 2.507l-.04.007a1 1 0 1 0 .328 1.972l.041-.006A4.541 4.541 0 0 0 15 11l-.005-.2A4 4 0 0 0 11 7H7.914l1.293-1.293a1 1 0 0 0 0-1.414Z" })), ke = o(xe), Ce = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor", strokeLinecap: "round" }, /* @__PURE__ */ e.createElement("circle", { cx: 10, cy: 10, r: 9.5, strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { strokeLinejoin: "round", strokeWidth: 2, d: "M5.5 8H11a3 3 0 0 1 3 3 3.541 3.541 0 0 1-2.96 3.493L11 14.5h0" }), /* @__PURE__ */ e.createElement("path", { strokeWidth: 2, d: "m8.5 11-3-3 3-3" }))), Le = o(Ce), Re = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2 }, /* @__PURE__ */ e.createElement("path", { strokeLinejoin: "round", d: "M2 14v4h16v-4" }), /* @__PURE__ */ e.createElement("path", { d: "m6 7 4-4 4 4m-4 7V3" }))), Ze = o(Re), Me = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd" }, /* @__PURE__ */ e.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", d: "M17.248 18.5c1.385 0 2.252-.969 2.252-2.189a2.08 2.08 0 0 0-.295-1.076L11.942 2.603A2.22 2.22 0 0 0 10.005 1.5c-.766 0-1.532.377-1.947 1.103L.805 15.243c-.203.341-.305.7-.305 1.068 0 1.22.867 2.189 2.252 2.189h14.496Z" }), /* @__PURE__ */ e.createElement("path", { fill: "currentColor", fillRule: "nonzero", d: "M10.01 12.4c-.492 0-.761-.277-.78-.775L9.1 7.067c-.018-.498.372-.867.9-.867.52 0 .918.378.9.876l-.13 4.549c-.019.507-.297.775-.76.775ZM10 15.6c-.57 0-1.1-.469-1.1-1.1 0-.631.52-1.1 1.1-1.1.57 0 1.1.458 1.1 1.1 0 .642-.54 1.1-1.1 1.1Z" }))), Se = o(Me), Be = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10.005 1c.796 0 1.603.399 2.04 1.168l7.644 13.374c.214.361.311.75.311 1.14C20 17.974 19.087 19 17.63 19H2.37C.913 19 0 17.974 0 16.682c0-.39.107-.77.32-1.13L7.956 2.168C8.392 1.398 9.2 1 10.005 1ZM10 13.4c-.58 0-1.1.469-1.1 1.1 0 .631.53 1.1 1.1 1.1.56 0 1.1-.458 1.1-1.1 0-.642-.53-1.1-1.1-1.1Zm0-7.2c-.528 0-.918.369-.9.867l.13 4.558c.019.498.288.775.78.775.463 0 .741-.268.76-.775l.13-4.549c.018-.498-.38-.876-.9-.876Z" })), Fe = o(Be), $e = "Icon_info_jKe8j", Ve = "Icon_error_Spa1M", Ae = "Icon_success_EnsSL", He = "Icon_warning_ZdPHu", We = "Icon_neutral_AfPjh", ye = "Icon_icon_FVr27", a = {
|
|
7
|
+
info: $e,
|
|
8
|
+
error: Ve,
|
|
9
|
+
success: Ae,
|
|
10
|
+
warning: He,
|
|
11
|
+
neutral: We,
|
|
12
|
+
icon: ye
|
|
13
|
+
}, n = /* @__PURE__ */ Object.assign({
|
|
14
|
+
"../../assets/icons/arrow-down-circle.svg": k,
|
|
15
|
+
"../../assets/icons/arrow-down-outline.svg": L,
|
|
16
|
+
"../../assets/icons/arrow-down.svg": Z,
|
|
17
|
+
"../../assets/icons/arrow-left-circle.svg": S,
|
|
18
|
+
"../../assets/icons/arrow-left-outline.svg": F,
|
|
19
|
+
"../../assets/icons/arrow-left.svg": V,
|
|
20
|
+
"../../assets/icons/arrow-right-circle.svg": H,
|
|
21
|
+
"../../assets/icons/arrow-right-outline.svg": y,
|
|
22
|
+
"../../assets/icons/arrow-right.svg": O,
|
|
23
|
+
"../../assets/icons/arrow-up-circle.svg": b,
|
|
24
|
+
"../../assets/icons/arrow-up-outline.svg": D,
|
|
25
|
+
"../../assets/icons/arrow-up.svg": I,
|
|
26
|
+
"../../assets/icons/bell.svg": T,
|
|
27
|
+
"../../assets/icons/bug.svg": G,
|
|
28
|
+
"../../assets/icons/calendar-date.svg": q,
|
|
29
|
+
"../../assets/icons/calendar.svg": Q,
|
|
30
|
+
"../../assets/icons/camera.svg": Y,
|
|
31
|
+
"../../assets/icons/cat.svg": t0,
|
|
32
|
+
"../../assets/icons/checkmark-circle.svg": o0,
|
|
33
|
+
"../../assets/icons/checkmark-outline.svg": n0,
|
|
34
|
+
"../../assets/icons/checkmark.svg": c0,
|
|
35
|
+
"../../assets/icons/chevron-left.svg": i0,
|
|
36
|
+
"../../assets/icons/chevron-right.svg": v0,
|
|
37
|
+
"../../assets/icons/clock-circle.svg": m0,
|
|
38
|
+
"../../assets/icons/clock-outline.svg": h0,
|
|
39
|
+
"../../assets/icons/close.svg": u0,
|
|
40
|
+
"../../assets/icons/collapse.svg": E0,
|
|
41
|
+
"../../assets/icons/cross-circle.svg": k0,
|
|
42
|
+
"../../assets/icons/cross-outline.svg": L0,
|
|
43
|
+
"../../assets/icons/cross.svg": Z0,
|
|
44
|
+
"../../assets/icons/delete-outline.svg": S0,
|
|
45
|
+
"../../assets/icons/delete.svg": F0,
|
|
46
|
+
"../../assets/icons/denied.svg": V0,
|
|
47
|
+
"../../assets/icons/disclosure.svg": H0,
|
|
48
|
+
"../../assets/icons/download.svg": y0,
|
|
49
|
+
"../../assets/icons/dropdown.svg": O0,
|
|
50
|
+
"../../assets/icons/envelope-outline.svg": b0,
|
|
51
|
+
"../../assets/icons/envelope.svg": D0,
|
|
52
|
+
"../../assets/icons/error-circle.svg": I0,
|
|
53
|
+
"../../assets/icons/error-outline.svg": T0,
|
|
54
|
+
"../../assets/icons/expand.svg": G0,
|
|
55
|
+
"../../assets/icons/frame.svg": q0,
|
|
56
|
+
"../../assets/icons/gear.svg": Q0,
|
|
57
|
+
"../../assets/icons/help-circle.svg": Y0,
|
|
58
|
+
"../../assets/icons/help-outline.svg": t1,
|
|
59
|
+
"../../assets/icons/info-circle.svg": o1,
|
|
60
|
+
"../../assets/icons/info-outline.svg": n1,
|
|
61
|
+
"../../assets/icons/location-cross.svg": c1,
|
|
62
|
+
"../../assets/icons/location.svg": i1,
|
|
63
|
+
"../../assets/icons/lock-open.svg": v1,
|
|
64
|
+
"../../assets/icons/lock.svg": m1,
|
|
65
|
+
"../../assets/icons/map-outline.svg": h1,
|
|
66
|
+
"../../assets/icons/map.svg": u1,
|
|
67
|
+
"../../assets/icons/menu.svg": E1,
|
|
68
|
+
"../../assets/icons/minus-circle.svg": k1,
|
|
69
|
+
"../../assets/icons/minus-outline.svg": L1,
|
|
70
|
+
"../../assets/icons/minus.svg": Z1,
|
|
71
|
+
"../../assets/icons/paper-plane.svg": S1,
|
|
72
|
+
"../../assets/icons/photos.svg": F1,
|
|
73
|
+
"../../assets/icons/playback-next.svg": V1,
|
|
74
|
+
"../../assets/icons/playback-pause.svg": H1,
|
|
75
|
+
"../../assets/icons/playback-play.svg": y1,
|
|
76
|
+
"../../assets/icons/playback-prev.svg": O1,
|
|
77
|
+
"../../assets/icons/playback-stop.svg": b1,
|
|
78
|
+
"../../assets/icons/plus-circle.svg": D1,
|
|
79
|
+
"../../assets/icons/plus-outline.svg": I1,
|
|
80
|
+
"../../assets/icons/plus.svg": T1,
|
|
81
|
+
"../../assets/icons/printer.svg": G1,
|
|
82
|
+
"../../assets/icons/profile-outline.svg": q1,
|
|
83
|
+
"../../assets/icons/profile.svg": Q1,
|
|
84
|
+
"../../assets/icons/redo-circle.svg": Y1,
|
|
85
|
+
"../../assets/icons/redo-outline.svg": te,
|
|
86
|
+
"../../assets/icons/refresh.svg": oe,
|
|
87
|
+
"../../assets/icons/reorder.svg": ne,
|
|
88
|
+
"../../assets/icons/search.svg": ce,
|
|
89
|
+
"../../assets/icons/shield-lock.svg": ie,
|
|
90
|
+
"../../assets/icons/shopping-cart.svg": ve,
|
|
91
|
+
"../../assets/icons/triangle-down.svg": me,
|
|
92
|
+
"../../assets/icons/triangle-left.svg": he,
|
|
93
|
+
"../../assets/icons/triangle-right.svg": ue,
|
|
94
|
+
"../../assets/icons/triangle-up.svg": Ee,
|
|
95
|
+
"../../assets/icons/undo-circle.svg": ke,
|
|
96
|
+
"../../assets/icons/undo-outline.svg": Le,
|
|
97
|
+
"../../assets/icons/upload.svg": Ze,
|
|
98
|
+
"../../assets/icons/warning-outline.svg": Se,
|
|
99
|
+
"../../assets/icons/warning.svg": Fe
|
|
100
|
+
});
|
|
101
|
+
Object.keys(n).map((t) => {
|
|
102
|
+
var s;
|
|
103
|
+
const r = (s = t.split("/").pop()) == null ? void 0 : s.replace(".svg", "");
|
|
104
|
+
r && (n[r] = n[t], delete n[t]);
|
|
105
|
+
});
|
|
106
|
+
const _e = p.forwardRef(
|
|
107
|
+
({ name: t, size: r, scheme: s, color: i, svg: w, style: v, className: g, ...c }, m) => {
|
|
108
|
+
const [d, h] = Array.isArray(r) ? r : [r, r], l = w || (t ? n[t] : void 0);
|
|
109
|
+
return l ? /* @__PURE__ */ u(
|
|
110
|
+
l,
|
|
111
|
+
{
|
|
112
|
+
...c,
|
|
113
|
+
ref: m,
|
|
114
|
+
focusable: !1,
|
|
115
|
+
"aria-hidden": !c["aria-label"] || void 0,
|
|
116
|
+
"data-icon": t || l.name,
|
|
117
|
+
className: f(a.icon, s && a[s], g),
|
|
118
|
+
style: { ...v, ...E({ color: i, width: d, height: h }) }
|
|
119
|
+
}
|
|
120
|
+
) : null;
|
|
121
|
+
}
|
|
122
|
+
);
|
|
123
|
+
export {
|
|
124
|
+
_e as Icon
|
|
125
|
+
};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const icons: readonly ["arrow-down-circle", "arrow-down-outline", "arrow-down", "arrow-left-circle", "arrow-left-outline", "arrow-left", "arrow-right-circle", "arrow-right-outline", "arrow-right", "arrow-up-circle", "arrow-up-outline", "arrow-up", "bell", "bug", "calendar-date", "calendar", "camera", "cat", "checkmark-circle", "checkmark-outline", "checkmark", "chevron-left", "chevron-right", "clock-circle", "clock-outline", "close", "collapse", "cross-circle", "cross-outline", "cross", "delete-outline", "delete", "denied", "disclosure", "download", "dropdown", "envelope-outline", "envelope", "error-circle", "error-outline", "expand", "frame", "gear", "help-circle", "help-outline", "info-circle", "info-outline", "location-cross", "location", "lock-open", "lock", "map-outline", "map", "menu", "minus-circle", "minus-outline", "minus", "paper-plane", "photos", "playback-next", "playback-pause", "playback-play", "playback-prev", "playback-stop", "plus-circle", "plus-outline", "plus", "printer", "profile-outline", "profile", "redo-circle", "redo-outline", "refresh", "reorder", "search", "shield-lock", "shopping-cart", "triangle-down", "triangle-left", "triangle-right", "triangle-up", "undo-circle", "undo-outline", "upload", "warning-outline", "warning"];
|
|
2
|
+
export default icons;
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
const e = [
|
|
2
|
+
"arrow-down-circle",
|
|
3
|
+
"arrow-down-outline",
|
|
4
|
+
"arrow-down",
|
|
5
|
+
"arrow-left-circle",
|
|
6
|
+
"arrow-left-outline",
|
|
7
|
+
"arrow-left",
|
|
8
|
+
"arrow-right-circle",
|
|
9
|
+
"arrow-right-outline",
|
|
10
|
+
"arrow-right",
|
|
11
|
+
"arrow-up-circle",
|
|
12
|
+
"arrow-up-outline",
|
|
13
|
+
"arrow-up",
|
|
14
|
+
"bell",
|
|
15
|
+
"bug",
|
|
16
|
+
"calendar-date",
|
|
17
|
+
"calendar",
|
|
18
|
+
"camera",
|
|
19
|
+
"cat",
|
|
20
|
+
"checkmark-circle",
|
|
21
|
+
"checkmark-outline",
|
|
22
|
+
"checkmark",
|
|
23
|
+
"chevron-left",
|
|
24
|
+
"chevron-right",
|
|
25
|
+
"clock-circle",
|
|
26
|
+
"clock-outline",
|
|
27
|
+
"close",
|
|
28
|
+
"collapse",
|
|
29
|
+
"cross-circle",
|
|
30
|
+
"cross-outline",
|
|
31
|
+
"cross",
|
|
32
|
+
"delete-outline",
|
|
33
|
+
"delete",
|
|
34
|
+
"denied",
|
|
35
|
+
"disclosure",
|
|
36
|
+
"download",
|
|
37
|
+
"dropdown",
|
|
38
|
+
"envelope-outline",
|
|
39
|
+
"envelope",
|
|
40
|
+
"error-circle",
|
|
41
|
+
"error-outline",
|
|
42
|
+
"expand",
|
|
43
|
+
"frame",
|
|
44
|
+
"gear",
|
|
45
|
+
"help-circle",
|
|
46
|
+
"help-outline",
|
|
47
|
+
"info-circle",
|
|
48
|
+
"info-outline",
|
|
49
|
+
"location-cross",
|
|
50
|
+
"location",
|
|
51
|
+
"lock-open",
|
|
52
|
+
"lock",
|
|
53
|
+
"map-outline",
|
|
54
|
+
"map",
|
|
55
|
+
"menu",
|
|
56
|
+
"minus-circle",
|
|
57
|
+
"minus-outline",
|
|
58
|
+
"minus",
|
|
59
|
+
"paper-plane",
|
|
60
|
+
"photos",
|
|
61
|
+
"playback-next",
|
|
62
|
+
"playback-pause",
|
|
63
|
+
"playback-play",
|
|
64
|
+
"playback-prev",
|
|
65
|
+
"playback-stop",
|
|
66
|
+
"plus-circle",
|
|
67
|
+
"plus-outline",
|
|
68
|
+
"plus",
|
|
69
|
+
"printer",
|
|
70
|
+
"profile-outline",
|
|
71
|
+
"profile",
|
|
72
|
+
"redo-circle",
|
|
73
|
+
"redo-outline",
|
|
74
|
+
"refresh",
|
|
75
|
+
"reorder",
|
|
76
|
+
"search",
|
|
77
|
+
"shield-lock",
|
|
78
|
+
"shopping-cart",
|
|
79
|
+
"triangle-down",
|
|
80
|
+
"triangle-left",
|
|
81
|
+
"triangle-right",
|
|
82
|
+
"triangle-up",
|
|
83
|
+
"undo-circle",
|
|
84
|
+
"undo-outline",
|
|
85
|
+
"upload",
|
|
86
|
+
"warning-outline",
|
|
87
|
+
"warning"
|
|
88
|
+
];
|
|
89
|
+
export {
|
|
90
|
+
e as default
|
|
91
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Icon';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { Placement } from '@floating-ui/react';
|
|
3
|
+
export type MenuProps = React.HTMLAttributes<HTMLDivElement> & {
|
|
4
|
+
placement?: Placement;
|
|
5
|
+
trigger: React.JSX.Element;
|
|
6
|
+
minWidth?: React.CSSProperties['minWidth'];
|
|
7
|
+
maxWidth?: React.CSSProperties['maxWidth'];
|
|
8
|
+
};
|
|
9
|
+
export declare const Menu: ({ placement, trigger, minWidth, maxWidth, className, children, ...props }: MenuProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { jsxs as j, Fragment as z, jsx as t } from "react/jsx-runtime";
|
|
2
|
+
import I, { useState as i, useRef as d, useMemo as N, useEffect as b } from "react";
|
|
3
|
+
import { a as B, o as D, f as L, s as O, b as W, r as _, c as k, d as A, e as H, g as U, h as q, F as G, i as J, j as K } from "../../floating-ui.react-KLg1MUz0.js";
|
|
4
|
+
import { c as Q } from "../../index-DyIdU--j.js";
|
|
5
|
+
import { MenuContext as T } from "./MenuContext.js";
|
|
6
|
+
import { s as V } from "../../styles.module-CUhWny5T.js";
|
|
7
|
+
const se = ({
|
|
8
|
+
placement: p = "bottom-start",
|
|
9
|
+
trigger: r,
|
|
10
|
+
minWidth: g,
|
|
11
|
+
maxWidth: h,
|
|
12
|
+
className: x,
|
|
13
|
+
children: F,
|
|
14
|
+
...R
|
|
15
|
+
}) => {
|
|
16
|
+
const [l, c] = i(!1), [a, v] = i(null), [y, M] = i({}), m = d([]), u = d(null), { refs: s, context: e, floatingStyles: P } = B({
|
|
17
|
+
open: l,
|
|
18
|
+
placement: p,
|
|
19
|
+
onOpenChange: c,
|
|
20
|
+
whileElementsMounted: W,
|
|
21
|
+
middleware: [
|
|
22
|
+
D(5),
|
|
23
|
+
L({ padding: 10 }),
|
|
24
|
+
O({
|
|
25
|
+
padding: 10,
|
|
26
|
+
apply({ rects: o, availableWidth: n, availableHeight: S }) {
|
|
27
|
+
_.flushSync(() => {
|
|
28
|
+
M({
|
|
29
|
+
minWidth: o.reference.width,
|
|
30
|
+
maxWidth: n,
|
|
31
|
+
maxHeight: S
|
|
32
|
+
});
|
|
33
|
+
});
|
|
34
|
+
}
|
|
35
|
+
})
|
|
36
|
+
]
|
|
37
|
+
}), { getReferenceProps: w, getFloatingProps: C, getItemProps: f } = k([
|
|
38
|
+
A(e),
|
|
39
|
+
H(e, { role: "menu" }),
|
|
40
|
+
U(e, { event: "mousedown" }),
|
|
41
|
+
q(e, {
|
|
42
|
+
listRef: m,
|
|
43
|
+
loop: !0,
|
|
44
|
+
activeIndex: a,
|
|
45
|
+
onNavigate: v
|
|
46
|
+
})
|
|
47
|
+
]), E = N(
|
|
48
|
+
() => ({ active: a, setOpen: c, getItemProps: f }),
|
|
49
|
+
[a, f]
|
|
50
|
+
);
|
|
51
|
+
return b(() => {
|
|
52
|
+
var n;
|
|
53
|
+
const o = (n = s.domReference.current) == null ? void 0 : n.closest("[data-floating-root]");
|
|
54
|
+
o && (u.current = o);
|
|
55
|
+
}, [s]), /* @__PURE__ */ j(z, { children: [
|
|
56
|
+
I.cloneElement(r, {
|
|
57
|
+
ref: s.setReference,
|
|
58
|
+
"data-menu": "trigger",
|
|
59
|
+
...w(r.props)
|
|
60
|
+
}),
|
|
61
|
+
/* @__PURE__ */ t(T.Provider, { value: E, children: l && /* @__PURE__ */ t(G, { root: u, children: /* @__PURE__ */ t(J, { context: e, modal: !1, initialFocus: -1, children: /* @__PURE__ */ t(
|
|
62
|
+
"div",
|
|
63
|
+
{
|
|
64
|
+
...R,
|
|
65
|
+
ref: s.setFloating,
|
|
66
|
+
"data-menu": "content",
|
|
67
|
+
className: Q(V.menu, x),
|
|
68
|
+
style: { ...P, ...y, minWidth: g, maxWidth: h },
|
|
69
|
+
...C(),
|
|
70
|
+
children: /* @__PURE__ */ t(K, { elementsRef: m, children: F })
|
|
71
|
+
}
|
|
72
|
+
) }) }) })
|
|
73
|
+
] });
|
|
74
|
+
};
|
|
75
|
+
export {
|
|
76
|
+
se as Menu
|
|
77
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { UseInteractionsReturn } from '@floating-ui/react';
|
|
3
|
+
export type MenuContextProps = {
|
|
4
|
+
active: number | null;
|
|
5
|
+
setOpen: (value: boolean) => void;
|
|
6
|
+
getItemProps: UseInteractionsReturn['getItemProps'];
|
|
7
|
+
};
|
|
8
|
+
export declare const MenuContext: React.Context<MenuContextProps>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export type MenuItemProps = React.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
2
|
+
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
3
|
+
scheme?: 'default' | 'negative' | 'positive' | 'warning';
|
|
4
|
+
icon?: React.ReactElement;
|
|
5
|
+
title?: React.ReactNode;
|
|
6
|
+
};
|
|
7
|
+
export declare const MenuItem: ({ size, scheme, icon, title, children, className, style, onClick, ...props }: MenuItemProps) => import("react/jsx-runtime").JSX.Element;
|