@cssui/react 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/icons/react/add_circle.js +23 -19
- package/dist/icons/react/add_circle.js.map +1 -1
- package/dist/icons/react/arrow_back.js +17 -19
- package/dist/icons/react/arrow_back.js.map +1 -1
- package/dist/icons/react/arrow_drop_down.js.map +1 -1
- package/dist/icons/react/arrow_forward.js.map +1 -1
- package/dist/icons/react/calendar_month.js.map +1 -1
- package/dist/icons/react/check.js +17 -19
- package/dist/icons/react/check.js.map +1 -1
- package/dist/icons/react/chevron_right.js.map +1 -1
- package/dist/icons/react/close.js +17 -19
- package/dist/icons/react/close.js.map +1 -1
- package/dist/icons/react/config.js +25 -19
- package/dist/icons/react/config.js.map +1 -1
- package/dist/icons/react/dark_mode.js +17 -19
- package/dist/icons/react/dark_mode.js.map +1 -1
- package/dist/icons/react/do_not_disturb_on.js +7 -1
- package/dist/icons/react/do_not_disturb_on.js.map +1 -1
- package/dist/icons/react/error.js +17 -19
- package/dist/icons/react/error.js.map +1 -1
- package/dist/icons/react/home.js +20 -22
- package/dist/icons/react/home.js.map +1 -1
- package/dist/icons/react/info.js +23 -19
- package/dist/icons/react/info.js.map +1 -1
- package/dist/icons/react/logo_Block.js +23 -19
- package/dist/icons/react/logo_Block.js.map +1 -1
- package/dist/icons/react/logo_Horizontal.js +7 -1
- package/dist/icons/react/logo_Horizontal.js.map +1 -1
- package/dist/icons/react/looks_3.js +17 -19
- package/dist/icons/react/looks_3.js.map +1 -1
- package/dist/icons/react/looks_one.js +23 -19
- package/dist/icons/react/looks_one.js.map +1 -1
- package/dist/icons/react/looks_two.js +17 -19
- package/dist/icons/react/looks_two.js.map +1 -1
- package/dist/icons/react/menu.js +17 -19
- package/dist/icons/react/menu.js.map +1 -1
- package/dist/icons/react/menu_open.js +17 -19
- package/dist/icons/react/menu_open.js.map +1 -1
- package/dist/icons/react/more_horiz.js +20 -22
- package/dist/icons/react/more_horiz.js.map +1 -1
- package/dist/icons/react/schedule.js +17 -19
- package/dist/icons/react/schedule.js.map +1 -1
- package/dist/icons/react/search.js +23 -19
- package/dist/icons/react/search.js.map +1 -1
- package/dist/icons/react/sunny.js +17 -19
- package/dist/icons/react/sunny.js.map +1 -1
- package/dist/icons/react/warning.js +23 -19
- package/dist/icons/react/warning.js.map +1 -1
- package/dist/style.css +2 -0
- package/dist/theme.css +183 -0
- package/package.json +3 -1
|
@@ -1,25 +1,29 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { memo } from 'react';
|
|
3
3
|
|
|
4
|
-
const AddCircle = memo(
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
4
|
+
const AddCircle = memo(({ size = 24, width, height, className = "", ...props }) => {
|
|
5
|
+
const finalWidth = width ?? size;
|
|
6
|
+
const finalHeight = height ?? size;
|
|
7
|
+
return /* @__PURE__ */ jsx(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: finalWidth,
|
|
11
|
+
height: finalHeight,
|
|
12
|
+
viewBox: "0 0 20 20",
|
|
13
|
+
fill: "currentColor",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
className: `css-icon ${className}`.trim(),
|
|
16
|
+
...props,
|
|
17
|
+
children: /* @__PURE__ */ jsx(
|
|
18
|
+
"path",
|
|
19
|
+
{
|
|
20
|
+
d: "M14.1797 10.8203V9.17969H10.8203V5.82031H9.17969V9.17969H5.82031V10.8203H9.17969V14.1797H10.8203V10.8203H14.1797ZM4.10156 4.14062C5.74219 2.5 7.70833 1.67969 10 1.67969C12.2917 1.67969 14.2448 2.5 15.8594 4.14062C17.5 5.75521 18.3203 7.70833 18.3203 10C18.3203 12.2917 17.5 14.2578 15.8594 15.8984C14.2448 17.513 12.2917 18.3203 10 18.3203C7.70833 18.3203 5.74219 17.513 4.10156 15.8984C2.48698 14.2578 1.67969 12.2917 1.67969 10C1.67969 7.70833 2.48698 5.75521 4.10156 4.14062Z",
|
|
21
|
+
fill: "currentColor"
|
|
22
|
+
}
|
|
23
|
+
)
|
|
24
|
+
}
|
|
25
|
+
);
|
|
26
|
+
});
|
|
23
27
|
AddCircle.displayName = "AddCircle";
|
|
24
28
|
|
|
25
29
|
export { AddCircle as default };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"add_circle.js","sources":["../../../../icons/react/add_circle.tsx"],"sourcesContent":["import { SVGProps, memo } from 'react'\n\nexport interface AddCircleProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {\n /**\n * 图标尺寸\n */\n size?: number | string\n}\n\n/**\n * add_circle 图标组件\n */\nconst AddCircle = memo(
|
|
1
|
+
{"version":3,"file":"add_circle.js","sources":["../../../../icons/react/add_circle.tsx"],"sourcesContent":["import { SVGProps, memo } from 'react'\n\nexport interface AddCircleProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {\n /**\n * 图标尺寸\n */\n size?: number | string\n}\n\n/**\n * add_circle 图标组件\n */\nconst AddCircle = memo(({ size = 24, width, height, className = '', ...props }: AddCircleProps) => {\n const finalWidth = width ?? size\n const finalHeight = height ?? size\n\n return (\n <svg\n width={finalWidth}\n height={finalHeight}\n viewBox=\"0 0 20 20\"\n fill=\"currentColor\"\n xmlns=\"http://www.w3.org/2000/svg\"\n className={`css-icon ${className}`.trim()}\n {...props}\n >\n <path\n d=\"M14.1797 10.8203V9.17969H10.8203V5.82031H9.17969V9.17969H5.82031V10.8203H9.17969V14.1797H10.8203V10.8203H14.1797ZM4.10156 4.14062C5.74219 2.5 7.70833 1.67969 10 1.67969C12.2917 1.67969 14.2448 2.5 15.8594 4.14062C17.5 5.75521 18.3203 7.70833 18.3203 10C18.3203 12.2917 17.5 14.2578 15.8594 15.8984C14.2448 17.513 12.2917 18.3203 10 18.3203C7.70833 18.3203 5.74219 17.513 4.10156 15.8984C2.48698 14.2578 1.67969 12.2917 1.67969 10C1.67969 7.70833 2.48698 5.75521 4.10156 4.14062Z\"\n fill=\"currentColor\"\n />\n </svg>\n )\n})\n\nAddCircle.displayName = 'AddCircle'\n\nexport default AddCircle\n"],"names":[],"mappings":";;;AAYA,MAAM,SAAA,GAAY,IAAA,CAAK,CAAC,EAAE,IAAA,GAAO,EAAA,EAAI,KAAA,EAAO,MAAA,EAAQ,SAAA,GAAY,EAAA,EAAI,GAAG,KAAA,EAAM,KAAsB;AACjG,EAAA,MAAM,aAAa,KAAA,IAAS,IAAA;AAC5B,EAAA,MAAM,cAAc,MAAA,IAAU,IAAA;AAE9B,EAAA,uBACE,GAAA;AAAA,IAAC,KAAA;AAAA,IAAA;AAAA,MACC,KAAA,EAAO,UAAA;AAAA,MACP,MAAA,EAAQ,WAAA;AAAA,MACR,OAAA,EAAQ,WAAA;AAAA,MACR,IAAA,EAAK,cAAA;AAAA,MACL,KAAA,EAAM,4BAAA;AAAA,MACN,SAAA,EAAW,CAAA,SAAA,EAAY,SAAS,CAAA,CAAA,CAAG,IAAA,EAAK;AAAA,MACvC,GAAG,KAAA;AAAA,MAEJ,QAAA,kBAAA,GAAA;AAAA,QAAC,MAAA;AAAA,QAAA;AAAA,UACC,CAAA,EAAE,geAAA;AAAA,UACF,IAAA,EAAK;AAAA;AAAA;AACP;AAAA,GACF;AAEJ,CAAC;AAED,SAAA,CAAU,WAAA,GAAc,WAAA;;;;"}
|
|
@@ -1,25 +1,23 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { memo } from 'react';
|
|
3
3
|
|
|
4
|
-
const ArrowBack = memo(
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
}
|
|
22
|
-
);
|
|
4
|
+
const ArrowBack = memo(({ size = 24, width, height, className = "", ...props }) => {
|
|
5
|
+
const finalWidth = width ?? size;
|
|
6
|
+
const finalHeight = height ?? size;
|
|
7
|
+
return /* @__PURE__ */ jsx(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: finalWidth,
|
|
11
|
+
height: finalHeight,
|
|
12
|
+
viewBox: "0 -960 960 960",
|
|
13
|
+
fill: "currentColor",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
className: `css-icon ${className}`.trim(),
|
|
16
|
+
...props,
|
|
17
|
+
children: /* @__PURE__ */ jsx("path", { d: "M655-80 255-480l400-400 56 57-343 343 343 343-56 57Z" })
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
});
|
|
23
21
|
ArrowBack.displayName = "ArrowBack";
|
|
24
22
|
|
|
25
23
|
export { ArrowBack as default };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"arrow_back.js","sources":["../../../../icons/react/arrow_back.tsx"],"sourcesContent":["import { SVGProps, memo } from 'react'\n\nexport interface ArrowBackProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {\n /**\n * 图标尺寸\n */\n size?: number | string\n}\n\n/**\n * arrow_back 图标组件\n */\nconst ArrowBack = memo(
|
|
1
|
+
{"version":3,"file":"arrow_back.js","sources":["../../../../icons/react/arrow_back.tsx"],"sourcesContent":["import { SVGProps, memo } from 'react'\n\nexport interface ArrowBackProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {\n /**\n * 图标尺寸\n */\n size?: number | string\n}\n\n/**\n * arrow_back 图标组件\n */\nconst ArrowBack = memo(({ size = 24, width, height, className = '', ...props }: ArrowBackProps) => {\n const finalWidth = width ?? size\n const finalHeight = height ?? size\n\n return (\n <svg\n width={finalWidth}\n height={finalHeight}\n viewBox=\"0 -960 960 960\"\n fill=\"currentColor\"\n xmlns=\"http://www.w3.org/2000/svg\"\n className={`css-icon ${className}`.trim()}\n {...props}\n >\n <path d=\"M655-80 255-480l400-400 56 57-343 343 343 343-56 57Z\" />\n </svg>\n )\n})\n\nArrowBack.displayName = 'ArrowBack'\n\nexport default ArrowBack\n"],"names":[],"mappings":";;;AAYA,MAAM,SAAA,GAAY,IAAA,CAAK,CAAC,EAAE,IAAA,GAAO,EAAA,EAAI,KAAA,EAAO,MAAA,EAAQ,SAAA,GAAY,EAAA,EAAI,GAAG,KAAA,EAAM,KAAsB;AACjG,EAAA,MAAM,aAAa,KAAA,IAAS,IAAA;AAC5B,EAAA,MAAM,cAAc,MAAA,IAAU,IAAA;AAE9B,EAAA,uBACE,GAAA;AAAA,IAAC,KAAA;AAAA,IAAA;AAAA,MACC,KAAA,EAAO,UAAA;AAAA,MACP,MAAA,EAAQ,WAAA;AAAA,MACR,OAAA,EAAQ,gBAAA;AAAA,MACR,IAAA,EAAK,cAAA;AAAA,MACL,KAAA,EAAM,4BAAA;AAAA,MACN,SAAA,EAAW,CAAA,SAAA,EAAY,SAAS,CAAA,CAAA,CAAG,IAAA,EAAK;AAAA,MACvC,GAAG,KAAA;AAAA,MAEJ,QAAA,kBAAA,GAAA,CAAC,MAAA,EAAA,EAAK,CAAA,EAAE,sDAAA,EAAuD;AAAA;AAAA,GACjE;AAEJ,CAAC;AAED,SAAA,CAAU,WAAA,GAAc,WAAA;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"arrow_drop_down.js","sources":["../../../../icons/react/arrow_drop_down.tsx"],"sourcesContent":["import { SVGProps, memo } from 'react'\n\nexport interface ArrowDropDownProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {\n /**\n * 图标尺寸\n */\n size?: number | string\n}\n\n/**\n * arrow_drop_down 图标组件\n */\nconst ArrowDropDown = memo(\n ({ size = 24, width, height, className = '', ...props }: ArrowDropDownProps) => {\n const finalWidth = width ?? size\n const finalHeight = height ?? size\n\n return (\n <svg\n width={finalWidth}\n height={finalHeight}\n viewBox=\"0 -960 960 960\"\n fill=\"currentColor\"\n xmlns=\"http://www.w3.org/2000/svg\"\n className={`css-icon ${className}`.trim()}\n {...props}\n >\n <path d=\"M480-360 280-559h400L480-360Z\"/>\n </svg>\n )\n }\n)\n\nArrowDropDown.displayName = 'ArrowDropDown'\n\nexport default ArrowDropDown\n"],"names":[],"mappings":";;;AAYA,MAAM,aAAA,GAAgB,IAAA;AAAA,EACpB,CAAC,EAAE,IAAA,GAAO,EAAA,EAAI,KAAA,EAAO,QAAQ,SAAA,GAAY,EAAA,EAAI,GAAG,KAAA,EAAM,KAA0B;AAC9E,IAAA,MAAM,aAAa,KAAA,IAAS,IAAA;AAC5B,IAAA,MAAM,cAAc,MAAA,IAAU,IAAA;AAE9B,IAAA,uBACE,GAAA;AAAA,MAAC,KAAA;AAAA,MAAA;AAAA,QACC,KAAA,EAAO,UAAA;AAAA,QACP,MAAA,EAAQ,WAAA;AAAA,QACR,OAAA,EAAQ,gBAAA;AAAA,QACR,IAAA,EAAK,cAAA;AAAA,QACL,KAAA,EAAM,4BAAA;AAAA,QACN,SAAA,EAAW,CAAA,SAAA,EAAY,SAAS,CAAA,CAAA,CAAG,IAAA,EAAK;AAAA,QACvC,GAAG,KAAA;AAAA,QAEJ,QAAA,kBAAA,GAAA,CAAC,MAAA,EAAA,EAAK,CAAA,EAAE,+BAAA,
|
|
1
|
+
{"version":3,"file":"arrow_drop_down.js","sources":["../../../../icons/react/arrow_drop_down.tsx"],"sourcesContent":["import { SVGProps, memo } from 'react'\n\nexport interface ArrowDropDownProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {\n /**\n * 图标尺寸\n */\n size?: number | string\n}\n\n/**\n * arrow_drop_down 图标组件\n */\nconst ArrowDropDown = memo(\n ({ size = 24, width, height, className = '', ...props }: ArrowDropDownProps) => {\n const finalWidth = width ?? size\n const finalHeight = height ?? size\n\n return (\n <svg\n width={finalWidth}\n height={finalHeight}\n viewBox=\"0 -960 960 960\"\n fill=\"currentColor\"\n xmlns=\"http://www.w3.org/2000/svg\"\n className={`css-icon ${className}`.trim()}\n {...props}\n >\n <path d=\"M480-360 280-559h400L480-360Z\" />\n </svg>\n )\n }\n)\n\nArrowDropDown.displayName = 'ArrowDropDown'\n\nexport default ArrowDropDown\n"],"names":[],"mappings":";;;AAYA,MAAM,aAAA,GAAgB,IAAA;AAAA,EACpB,CAAC,EAAE,IAAA,GAAO,EAAA,EAAI,KAAA,EAAO,QAAQ,SAAA,GAAY,EAAA,EAAI,GAAG,KAAA,EAAM,KAA0B;AAC9E,IAAA,MAAM,aAAa,KAAA,IAAS,IAAA;AAC5B,IAAA,MAAM,cAAc,MAAA,IAAU,IAAA;AAE9B,IAAA,uBACE,GAAA;AAAA,MAAC,KAAA;AAAA,MAAA;AAAA,QACC,KAAA,EAAO,UAAA;AAAA,QACP,MAAA,EAAQ,WAAA;AAAA,QACR,OAAA,EAAQ,gBAAA;AAAA,QACR,IAAA,EAAK,cAAA;AAAA,QACL,KAAA,EAAM,4BAAA;AAAA,QACN,SAAA,EAAW,CAAA,SAAA,EAAY,SAAS,CAAA,CAAA,CAAG,IAAA,EAAK;AAAA,QACvC,GAAG,KAAA;AAAA,QAEJ,QAAA,kBAAA,GAAA,CAAC,MAAA,EAAA,EAAK,CAAA,EAAE,+BAAA,EAAgC;AAAA;AAAA,KAC1C;AAAA,EAEJ;AACF;AAEA,aAAA,CAAc,WAAA,GAAc,eAAA;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"arrow_forward.js","sources":["../../../../icons/react/arrow_forward.tsx"],"sourcesContent":["import { SVGProps, memo } from 'react'\n\nexport interface ArrowForwardProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {\n /**\n * 图标尺寸\n */\n size?: number | string\n}\n\n/**\n * arrow_forward 图标组件\n */\nconst ArrowForward = memo(\n ({ size = 24, width, height, className = '', ...props }: ArrowForwardProps) => {\n const finalWidth = width ?? size\n const finalHeight = height ?? size\n\n return (\n <svg\n width={finalWidth}\n height={finalHeight}\n viewBox=\"0 -960 960 960\"\n fill=\"currentColor\"\n xmlns=\"http://www.w3.org/2000/svg\"\n className={`css-icon ${className}`.trim()}\n {...props}\n >\n <path d=\"M686-450H160v-60h526L438-758l42-42 320 320-320 320-42-42 248-248Z\"/>\n </svg>\n )\n }\n)\n\nArrowForward.displayName = 'ArrowForward'\n\nexport default ArrowForward\n"],"names":[],"mappings":";;;AAYA,MAAM,YAAA,GAAe,IAAA;AAAA,EACnB,CAAC,EAAE,IAAA,GAAO,EAAA,EAAI,KAAA,EAAO,QAAQ,SAAA,GAAY,EAAA,EAAI,GAAG,KAAA,EAAM,KAAyB;AAC7E,IAAA,MAAM,aAAa,KAAA,IAAS,IAAA;AAC5B,IAAA,MAAM,cAAc,MAAA,IAAU,IAAA;AAE9B,IAAA,uBACE,GAAA;AAAA,MAAC,KAAA;AAAA,MAAA;AAAA,QACC,KAAA,EAAO,UAAA;AAAA,QACP,MAAA,EAAQ,WAAA;AAAA,QACR,OAAA,EAAQ,gBAAA;AAAA,QACR,IAAA,EAAK,cAAA;AAAA,QACL,KAAA,EAAM,4BAAA;AAAA,QACN,SAAA,EAAW,CAAA,SAAA,EAAY,SAAS,CAAA,CAAA,CAAG,IAAA,EAAK;AAAA,QACvC,GAAG,KAAA;AAAA,QAEJ,QAAA,kBAAA,GAAA,CAAC,MAAA,EAAA,EAAK,CAAA,EAAE,mEAAA,
|
|
1
|
+
{"version":3,"file":"arrow_forward.js","sources":["../../../../icons/react/arrow_forward.tsx"],"sourcesContent":["import { SVGProps, memo } from 'react'\n\nexport interface ArrowForwardProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {\n /**\n * 图标尺寸\n */\n size?: number | string\n}\n\n/**\n * arrow_forward 图标组件\n */\nconst ArrowForward = memo(\n ({ size = 24, width, height, className = '', ...props }: ArrowForwardProps) => {\n const finalWidth = width ?? size\n const finalHeight = height ?? size\n\n return (\n <svg\n width={finalWidth}\n height={finalHeight}\n viewBox=\"0 -960 960 960\"\n fill=\"currentColor\"\n xmlns=\"http://www.w3.org/2000/svg\"\n className={`css-icon ${className}`.trim()}\n {...props}\n >\n <path d=\"M686-450H160v-60h526L438-758l42-42 320 320-320 320-42-42 248-248Z\" />\n </svg>\n )\n }\n)\n\nArrowForward.displayName = 'ArrowForward'\n\nexport default ArrowForward\n"],"names":[],"mappings":";;;AAYA,MAAM,YAAA,GAAe,IAAA;AAAA,EACnB,CAAC,EAAE,IAAA,GAAO,EAAA,EAAI,KAAA,EAAO,QAAQ,SAAA,GAAY,EAAA,EAAI,GAAG,KAAA,EAAM,KAAyB;AAC7E,IAAA,MAAM,aAAa,KAAA,IAAS,IAAA;AAC5B,IAAA,MAAM,cAAc,MAAA,IAAU,IAAA;AAE9B,IAAA,uBACE,GAAA;AAAA,MAAC,KAAA;AAAA,MAAA;AAAA,QACC,KAAA,EAAO,UAAA;AAAA,QACP,MAAA,EAAQ,WAAA;AAAA,QACR,OAAA,EAAQ,gBAAA;AAAA,QACR,IAAA,EAAK,cAAA;AAAA,QACL,KAAA,EAAM,4BAAA;AAAA,QACN,SAAA,EAAW,CAAA,SAAA,EAAY,SAAS,CAAA,CAAA,CAAG,IAAA,EAAK;AAAA,QACvC,GAAG,KAAA;AAAA,QAEJ,QAAA,kBAAA,GAAA,CAAC,MAAA,EAAA,EAAK,CAAA,EAAE,mEAAA,EAAoE;AAAA;AAAA,KAC9E;AAAA,EAEJ;AACF;AAEA,YAAA,CAAa,WAAA,GAAc,cAAA;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"calendar_month.js","sources":["../../../../icons/react/calendar_month.tsx"],"sourcesContent":["import { SVGProps, memo } from 'react'\n\nexport interface CalendarMonthProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {\n /**\n * 图标尺寸\n */\n size?: number | string\n}\n\n/**\n * calendar_month 图标组件\n */\nconst CalendarMonth = memo(\n ({ size = 24, width, height, className = '', ...props }: CalendarMonthProps) => {\n const finalWidth = width ?? size\n const finalHeight = height ?? size\n\n return (\n <svg\n width={finalWidth}\n height={finalHeight}\n viewBox=\"0 -960 960 960\"\n fill=\"currentColor\"\n xmlns=\"http://www.w3.org/2000/svg\"\n className={`css-icon ${className}`.trim()}\n {...props}\n >\n <path d=\"M480-400q-17 0-28.5-11.5T440-440q0-17 11.5-28.5T480-480q17 0 28.5 11.5T520-440q0 17-11.5 28.5T480-400Zm-188.5-11.5Q280-423 280-440t11.5-28.5Q303-480 320-480t28.5 11.5Q360-457 360-440t-11.5 28.5Q337-400 320-400t-28.5-11.5ZM640-400q-17 0-28.5-11.5T600-440q0-17 11.5-28.5T640-480q17 0 28.5 11.5T680-440q0 17-11.5 28.5T640-400ZM480-240q-17 0-28.5-11.5T440-280q0-17 11.5-28.5T480-320q17 0 28.5 11.5T520-280q0 17-11.5 28.5T480-240Zm-188.5-11.5Q280-263 280-280t11.5-28.5Q303-320 320-320t28.5 11.5Q360-297 360-280t-11.5 28.5Q337-240 320-240t-28.5-11.5ZM640-240q-17 0-28.5-11.5T600-280q0-17 11.5-28.5T640-320q17 0 28.5 11.5T680-280q0 17-11.5 28.5T640-240ZM180-80q-24 0-42-18t-18-42v-620q0-24 18-42t42-18h65v-60h65v60h340v-60h65v60h65q24 0 42 18t18 42v620q0 24-18 42t-42 18H180Zm0-60h600v-430H180v430Z\"/>\n </svg>\n )\n }\n)\n\nCalendarMonth.displayName = 'CalendarMonth'\n\nexport default CalendarMonth\n"],"names":[],"mappings":";;;AAYA,MAAM,aAAA,GAAgB,IAAA;AAAA,EACpB,CAAC,EAAE,IAAA,GAAO,EAAA,EAAI,KAAA,EAAO,QAAQ,SAAA,GAAY,EAAA,EAAI,GAAG,KAAA,EAAM,KAA0B;AAC9E,IAAA,MAAM,aAAa,KAAA,IAAS,IAAA;AAC5B,IAAA,MAAM,cAAc,MAAA,IAAU,IAAA;AAE9B,IAAA,uBACE,GAAA;AAAA,MAAC,KAAA;AAAA,MAAA;AAAA,QACC,KAAA,EAAO,UAAA;AAAA,QACP,MAAA,EAAQ,WAAA;AAAA,QACR,OAAA,EAAQ,gBAAA;AAAA,QACR,IAAA,EAAK,cAAA;AAAA,QACL,KAAA,EAAM,4BAAA;AAAA,QACN,SAAA,EAAW,CAAA,SAAA,EAAY,SAAS,CAAA,CAAA,CAAG,IAAA,EAAK;AAAA,QACvC,GAAG,KAAA;AAAA,QAEJ,QAAA,kBAAA,GAAA,CAAC,MAAA,EAAA,EAAK,CAAA,EAAE,yxBAAA,
|
|
1
|
+
{"version":3,"file":"calendar_month.js","sources":["../../../../icons/react/calendar_month.tsx"],"sourcesContent":["import { SVGProps, memo } from 'react'\n\nexport interface CalendarMonthProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {\n /**\n * 图标尺寸\n */\n size?: number | string\n}\n\n/**\n * calendar_month 图标组件\n */\nconst CalendarMonth = memo(\n ({ size = 24, width, height, className = '', ...props }: CalendarMonthProps) => {\n const finalWidth = width ?? size\n const finalHeight = height ?? size\n\n return (\n <svg\n width={finalWidth}\n height={finalHeight}\n viewBox=\"0 -960 960 960\"\n fill=\"currentColor\"\n xmlns=\"http://www.w3.org/2000/svg\"\n className={`css-icon ${className}`.trim()}\n {...props}\n >\n <path d=\"M480-400q-17 0-28.5-11.5T440-440q0-17 11.5-28.5T480-480q17 0 28.5 11.5T520-440q0 17-11.5 28.5T480-400Zm-188.5-11.5Q280-423 280-440t11.5-28.5Q303-480 320-480t28.5 11.5Q360-457 360-440t-11.5 28.5Q337-400 320-400t-28.5-11.5ZM640-400q-17 0-28.5-11.5T600-440q0-17 11.5-28.5T640-480q17 0 28.5 11.5T680-440q0 17-11.5 28.5T640-400ZM480-240q-17 0-28.5-11.5T440-280q0-17 11.5-28.5T480-320q17 0 28.5 11.5T520-280q0 17-11.5 28.5T480-240Zm-188.5-11.5Q280-263 280-280t11.5-28.5Q303-320 320-320t28.5 11.5Q360-297 360-280t-11.5 28.5Q337-240 320-240t-28.5-11.5ZM640-240q-17 0-28.5-11.5T600-280q0-17 11.5-28.5T640-320q17 0 28.5 11.5T680-280q0 17-11.5 28.5T640-240ZM180-80q-24 0-42-18t-18-42v-620q0-24 18-42t42-18h65v-60h65v60h340v-60h65v60h65q24 0 42 18t18 42v620q0 24-18 42t-42 18H180Zm0-60h600v-430H180v430Z\" />\n </svg>\n )\n }\n)\n\nCalendarMonth.displayName = 'CalendarMonth'\n\nexport default CalendarMonth\n"],"names":[],"mappings":";;;AAYA,MAAM,aAAA,GAAgB,IAAA;AAAA,EACpB,CAAC,EAAE,IAAA,GAAO,EAAA,EAAI,KAAA,EAAO,QAAQ,SAAA,GAAY,EAAA,EAAI,GAAG,KAAA,EAAM,KAA0B;AAC9E,IAAA,MAAM,aAAa,KAAA,IAAS,IAAA;AAC5B,IAAA,MAAM,cAAc,MAAA,IAAU,IAAA;AAE9B,IAAA,uBACE,GAAA;AAAA,MAAC,KAAA;AAAA,MAAA;AAAA,QACC,KAAA,EAAO,UAAA;AAAA,QACP,MAAA,EAAQ,WAAA;AAAA,QACR,OAAA,EAAQ,gBAAA;AAAA,QACR,IAAA,EAAK,cAAA;AAAA,QACL,KAAA,EAAM,4BAAA;AAAA,QACN,SAAA,EAAW,CAAA,SAAA,EAAY,SAAS,CAAA,CAAA,CAAG,IAAA,EAAK;AAAA,QACvC,GAAG,KAAA;AAAA,QAEJ,QAAA,kBAAA,GAAA,CAAC,MAAA,EAAA,EAAK,CAAA,EAAE,yxBAAA,EAA0xB;AAAA;AAAA,KACpyB;AAAA,EAEJ;AACF;AAEA,aAAA,CAAc,WAAA,GAAc,eAAA;;;;"}
|
|
@@ -1,25 +1,23 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { memo } from 'react';
|
|
3
3
|
|
|
4
|
-
const Check = memo(
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
}
|
|
22
|
-
);
|
|
4
|
+
const Check = memo(({ size = 24, width, height, className = "", ...props }) => {
|
|
5
|
+
const finalWidth = width ?? size;
|
|
6
|
+
const finalHeight = height ?? size;
|
|
7
|
+
return /* @__PURE__ */ jsx(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: finalWidth,
|
|
11
|
+
height: finalHeight,
|
|
12
|
+
viewBox: "0 -960 960 960",
|
|
13
|
+
fill: "currentColor",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
className: `css-icon ${className}`.trim(),
|
|
16
|
+
...props,
|
|
17
|
+
children: /* @__PURE__ */ jsx("path", { d: "M378-246 154-470l43-43 181 181 384-384 43 43-427 427Z" })
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
});
|
|
23
21
|
Check.displayName = "Check";
|
|
24
22
|
|
|
25
23
|
export { Check as default };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"check.js","sources":["../../../../icons/react/check.tsx"],"sourcesContent":["import { SVGProps, memo } from 'react'\n\nexport interface CheckProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {\n /**\n * 图标尺寸\n */\n size?: number | string\n}\n\n/**\n * check 图标组件\n */\nconst Check = memo(
|
|
1
|
+
{"version":3,"file":"check.js","sources":["../../../../icons/react/check.tsx"],"sourcesContent":["import { SVGProps, memo } from 'react'\n\nexport interface CheckProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {\n /**\n * 图标尺寸\n */\n size?: number | string\n}\n\n/**\n * check 图标组件\n */\nconst Check = memo(({ size = 24, width, height, className = '', ...props }: CheckProps) => {\n const finalWidth = width ?? size\n const finalHeight = height ?? size\n\n return (\n <svg\n width={finalWidth}\n height={finalHeight}\n viewBox=\"0 -960 960 960\"\n fill=\"currentColor\"\n xmlns=\"http://www.w3.org/2000/svg\"\n className={`css-icon ${className}`.trim()}\n {...props}\n >\n <path d=\"M378-246 154-470l43-43 181 181 384-384 43 43-427 427Z\" />\n </svg>\n )\n})\n\nCheck.displayName = 'Check'\n\nexport default Check\n"],"names":[],"mappings":";;;AAYA,MAAM,KAAA,GAAQ,IAAA,CAAK,CAAC,EAAE,IAAA,GAAO,EAAA,EAAI,KAAA,EAAO,MAAA,EAAQ,SAAA,GAAY,EAAA,EAAI,GAAG,KAAA,EAAM,KAAkB;AACzF,EAAA,MAAM,aAAa,KAAA,IAAS,IAAA;AAC5B,EAAA,MAAM,cAAc,MAAA,IAAU,IAAA;AAE9B,EAAA,uBACE,GAAA;AAAA,IAAC,KAAA;AAAA,IAAA;AAAA,MACC,KAAA,EAAO,UAAA;AAAA,MACP,MAAA,EAAQ,WAAA;AAAA,MACR,OAAA,EAAQ,gBAAA;AAAA,MACR,IAAA,EAAK,cAAA;AAAA,MACL,KAAA,EAAM,4BAAA;AAAA,MACN,SAAA,EAAW,CAAA,SAAA,EAAY,SAAS,CAAA,CAAA,CAAG,IAAA,EAAK;AAAA,MACvC,GAAG,KAAA;AAAA,MAEJ,QAAA,kBAAA,GAAA,CAAC,MAAA,EAAA,EAAK,CAAA,EAAE,uDAAA,EAAwD;AAAA;AAAA,GAClE;AAEJ,CAAC;AAED,KAAA,CAAM,WAAA,GAAc,OAAA;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chevron_right.js","sources":["../../../../icons/react/chevron_right.tsx"],"sourcesContent":["import { SVGProps, memo } from 'react'\n\nexport interface ChevronRightProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {\n /**\n * 图标尺寸\n */\n size?: number | string\n}\n\n/**\n * chevron_right 图标组件\n */\nconst ChevronRight = memo(\n ({ size = 24, width, height, className = '', ...props }: ChevronRightProps) => {\n const finalWidth = width ?? size\n const finalHeight = height ?? size\n\n return (\n <svg\n width={finalWidth}\n height={finalHeight}\n viewBox=\"0 -960 960 960\"\n fill=\"currentColor\"\n xmlns=\"http://www.w3.org/2000/svg\"\n className={`css-icon ${className}`.trim()}\n {...props}\n >\n <path d=\"M530-481 332-679l43-43 241 241-241 241-43-43 198-198Z\"/>\n </svg>\n )\n }\n)\n\nChevronRight.displayName = 'ChevronRight'\n\nexport default ChevronRight\n"],"names":[],"mappings":";;;AAYA,MAAM,YAAA,GAAe,IAAA;AAAA,EACnB,CAAC,EAAE,IAAA,GAAO,EAAA,EAAI,KAAA,EAAO,QAAQ,SAAA,GAAY,EAAA,EAAI,GAAG,KAAA,EAAM,KAAyB;AAC7E,IAAA,MAAM,aAAa,KAAA,IAAS,IAAA;AAC5B,IAAA,MAAM,cAAc,MAAA,IAAU,IAAA;AAE9B,IAAA,uBACE,GAAA;AAAA,MAAC,KAAA;AAAA,MAAA;AAAA,QACC,KAAA,EAAO,UAAA;AAAA,QACP,MAAA,EAAQ,WAAA;AAAA,QACR,OAAA,EAAQ,gBAAA;AAAA,QACR,IAAA,EAAK,cAAA;AAAA,QACL,KAAA,EAAM,4BAAA;AAAA,QACN,SAAA,EAAW,CAAA,SAAA,EAAY,SAAS,CAAA,CAAA,CAAG,IAAA,EAAK;AAAA,QACvC,GAAG,KAAA;AAAA,QAEJ,QAAA,kBAAA,GAAA,CAAC,MAAA,EAAA,EAAK,CAAA,EAAE,uDAAA,
|
|
1
|
+
{"version":3,"file":"chevron_right.js","sources":["../../../../icons/react/chevron_right.tsx"],"sourcesContent":["import { SVGProps, memo } from 'react'\n\nexport interface ChevronRightProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {\n /**\n * 图标尺寸\n */\n size?: number | string\n}\n\n/**\n * chevron_right 图标组件\n */\nconst ChevronRight = memo(\n ({ size = 24, width, height, className = '', ...props }: ChevronRightProps) => {\n const finalWidth = width ?? size\n const finalHeight = height ?? size\n\n return (\n <svg\n width={finalWidth}\n height={finalHeight}\n viewBox=\"0 -960 960 960\"\n fill=\"currentColor\"\n xmlns=\"http://www.w3.org/2000/svg\"\n className={`css-icon ${className}`.trim()}\n {...props}\n >\n <path d=\"M530-481 332-679l43-43 241 241-241 241-43-43 198-198Z\" />\n </svg>\n )\n }\n)\n\nChevronRight.displayName = 'ChevronRight'\n\nexport default ChevronRight\n"],"names":[],"mappings":";;;AAYA,MAAM,YAAA,GAAe,IAAA;AAAA,EACnB,CAAC,EAAE,IAAA,GAAO,EAAA,EAAI,KAAA,EAAO,QAAQ,SAAA,GAAY,EAAA,EAAI,GAAG,KAAA,EAAM,KAAyB;AAC7E,IAAA,MAAM,aAAa,KAAA,IAAS,IAAA;AAC5B,IAAA,MAAM,cAAc,MAAA,IAAU,IAAA;AAE9B,IAAA,uBACE,GAAA;AAAA,MAAC,KAAA;AAAA,MAAA;AAAA,QACC,KAAA,EAAO,UAAA;AAAA,QACP,MAAA,EAAQ,WAAA;AAAA,QACR,OAAA,EAAQ,gBAAA;AAAA,QACR,IAAA,EAAK,cAAA;AAAA,QACL,KAAA,EAAM,4BAAA;AAAA,QACN,SAAA,EAAW,CAAA,SAAA,EAAY,SAAS,CAAA,CAAA,CAAG,IAAA,EAAK;AAAA,QACvC,GAAG,KAAA;AAAA,QAEJ,QAAA,kBAAA,GAAA,CAAC,MAAA,EAAA,EAAK,CAAA,EAAE,uDAAA,EAAwD;AAAA;AAAA,KAClE;AAAA,EAEJ;AACF;AAEA,YAAA,CAAa,WAAA,GAAc,cAAA;;;;"}
|
|
@@ -1,25 +1,23 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { memo } from 'react';
|
|
3
3
|
|
|
4
|
-
const Close = memo(
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
}
|
|
22
|
-
);
|
|
4
|
+
const Close = memo(({ size = 24, width, height, className = "", ...props }) => {
|
|
5
|
+
const finalWidth = width ?? size;
|
|
6
|
+
const finalHeight = height ?? size;
|
|
7
|
+
return /* @__PURE__ */ jsx(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: finalWidth,
|
|
11
|
+
height: finalHeight,
|
|
12
|
+
viewBox: "0 -960 960 960",
|
|
13
|
+
fill: "currentColor",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
className: `css-icon ${className}`.trim(),
|
|
16
|
+
...props,
|
|
17
|
+
children: /* @__PURE__ */ jsx("path", { d: "m249-207-42-42 231-231-231-231 42-42 231 231 231-231 42 42-231 231 231 231-42 42-231-231-231 231Z" })
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
});
|
|
23
21
|
Close.displayName = "Close";
|
|
24
22
|
|
|
25
23
|
export { Close as default };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"close.js","sources":["../../../../icons/react/close.tsx"],"sourcesContent":["import { SVGProps, memo } from 'react'\n\nexport interface CloseProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {\n /**\n * 图标尺寸\n */\n size?: number | string\n}\n\n/**\n * close 图标组件\n */\nconst Close = memo(
|
|
1
|
+
{"version":3,"file":"close.js","sources":["../../../../icons/react/close.tsx"],"sourcesContent":["import { SVGProps, memo } from 'react'\n\nexport interface CloseProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {\n /**\n * 图标尺寸\n */\n size?: number | string\n}\n\n/**\n * close 图标组件\n */\nconst Close = memo(({ size = 24, width, height, className = '', ...props }: CloseProps) => {\n const finalWidth = width ?? size\n const finalHeight = height ?? size\n\n return (\n <svg\n width={finalWidth}\n height={finalHeight}\n viewBox=\"0 -960 960 960\"\n fill=\"currentColor\"\n xmlns=\"http://www.w3.org/2000/svg\"\n className={`css-icon ${className}`.trim()}\n {...props}\n >\n <path d=\"m249-207-42-42 231-231-231-231 42-42 231 231 231-231 42 42-231 231 231 231-42 42-231-231-231 231Z\" />\n </svg>\n )\n})\n\nClose.displayName = 'Close'\n\nexport default Close\n"],"names":[],"mappings":";;;AAYA,MAAM,KAAA,GAAQ,IAAA,CAAK,CAAC,EAAE,IAAA,GAAO,EAAA,EAAI,KAAA,EAAO,MAAA,EAAQ,SAAA,GAAY,EAAA,EAAI,GAAG,KAAA,EAAM,KAAkB;AACzF,EAAA,MAAM,aAAa,KAAA,IAAS,IAAA;AAC5B,EAAA,MAAM,cAAc,MAAA,IAAU,IAAA;AAE9B,EAAA,uBACE,GAAA;AAAA,IAAC,KAAA;AAAA,IAAA;AAAA,MACC,KAAA,EAAO,UAAA;AAAA,MACP,MAAA,EAAQ,WAAA;AAAA,MACR,OAAA,EAAQ,gBAAA;AAAA,MACR,IAAA,EAAK,cAAA;AAAA,MACL,KAAA,EAAM,4BAAA;AAAA,MACN,SAAA,EAAW,CAAA,SAAA,EAAY,SAAS,CAAA,CAAA,CAAG,IAAA,EAAK;AAAA,MACvC,GAAG,KAAA;AAAA,MAEJ,QAAA,kBAAA,GAAA,CAAC,MAAA,EAAA,EAAK,CAAA,EAAE,mGAAA,EAAoG;AAAA;AAAA,GAC9G;AAEJ,CAAC;AAED,KAAA,CAAM,WAAA,GAAc,OAAA;;;;"}
|
|
@@ -1,25 +1,31 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { memo } from 'react';
|
|
3
3
|
|
|
4
|
-
const Config = memo(
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
4
|
+
const Config = memo(({ size = 24, width, height, className = "", ...props }) => {
|
|
5
|
+
const finalWidth = width ?? size;
|
|
6
|
+
const finalHeight = height ?? size;
|
|
7
|
+
return /* @__PURE__ */ jsx(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: finalWidth,
|
|
11
|
+
height: finalHeight,
|
|
12
|
+
viewBox: "0 0 20 20",
|
|
13
|
+
fill: "currentColor",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
className: `css-icon ${className}`.trim(),
|
|
16
|
+
...props,
|
|
17
|
+
children: /* @__PURE__ */ jsx(
|
|
18
|
+
"path",
|
|
19
|
+
{
|
|
20
|
+
fillRule: "evenodd",
|
|
21
|
+
clipRule: "evenodd",
|
|
22
|
+
d: "M10.0013 1.6665C5.4013 1.6665 1.66797 5.39984 1.66797 9.99984C1.66797 14.5998 5.4013 18.3332 10.0013 18.3332C14.6013 18.3332 18.3346 14.5998 18.3346 9.99984C18.3346 5.39984 14.6013 1.6665 10.0013 1.6665ZM14.0846 12.9082L12.918 14.0748C12.7513 14.2415 12.493 14.2415 12.3263 14.0748L9.48464 11.2332C8.46797 11.5915 7.28464 11.3748 6.46797 10.5582C5.54297 9.63317 5.38464 8.23317 5.9763 7.1415L7.93464 9.09984L9.10964 7.92484L7.1513 5.97484C8.2513 5.38317 9.64297 5.5415 10.568 6.4665C11.3846 7.28317 11.6013 8.4665 11.243 9.48317L14.0846 12.3248C14.243 12.4832 14.243 12.7498 14.0846 12.9082Z",
|
|
23
|
+
fill: "currentColor"
|
|
24
|
+
}
|
|
25
|
+
)
|
|
26
|
+
}
|
|
27
|
+
);
|
|
28
|
+
});
|
|
23
29
|
Config.displayName = "Config";
|
|
24
30
|
|
|
25
31
|
export { Config as default };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.js","sources":["../../../../icons/react/config.tsx"],"sourcesContent":["import { SVGProps, memo } from 'react'\n\nexport interface ConfigProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {\n /**\n * 图标尺寸\n */\n size?: number | string\n}\n\n/**\n * config 图标组件\n */\nconst Config = memo(
|
|
1
|
+
{"version":3,"file":"config.js","sources":["../../../../icons/react/config.tsx"],"sourcesContent":["import { SVGProps, memo } from 'react'\n\nexport interface ConfigProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {\n /**\n * 图标尺寸\n */\n size?: number | string\n}\n\n/**\n * config 图标组件\n */\nconst Config = memo(({ size = 24, width, height, className = '', ...props }: ConfigProps) => {\n const finalWidth = width ?? size\n const finalHeight = height ?? size\n\n return (\n <svg\n width={finalWidth}\n height={finalHeight}\n viewBox=\"0 0 20 20\"\n fill=\"currentColor\"\n xmlns=\"http://www.w3.org/2000/svg\"\n className={`css-icon ${className}`.trim()}\n {...props}\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M10.0013 1.6665C5.4013 1.6665 1.66797 5.39984 1.66797 9.99984C1.66797 14.5998 5.4013 18.3332 10.0013 18.3332C14.6013 18.3332 18.3346 14.5998 18.3346 9.99984C18.3346 5.39984 14.6013 1.6665 10.0013 1.6665ZM14.0846 12.9082L12.918 14.0748C12.7513 14.2415 12.493 14.2415 12.3263 14.0748L9.48464 11.2332C8.46797 11.5915 7.28464 11.3748 6.46797 10.5582C5.54297 9.63317 5.38464 8.23317 5.9763 7.1415L7.93464 9.09984L9.10964 7.92484L7.1513 5.97484C8.2513 5.38317 9.64297 5.5415 10.568 6.4665C11.3846 7.28317 11.6013 8.4665 11.243 9.48317L14.0846 12.3248C14.243 12.4832 14.243 12.7498 14.0846 12.9082Z\"\n fill=\"currentColor\"\n />\n </svg>\n )\n})\n\nConfig.displayName = 'Config'\n\nexport default Config\n"],"names":[],"mappings":";;;AAYA,MAAM,MAAA,GAAS,IAAA,CAAK,CAAC,EAAE,IAAA,GAAO,EAAA,EAAI,KAAA,EAAO,MAAA,EAAQ,SAAA,GAAY,EAAA,EAAI,GAAG,KAAA,EAAM,KAAmB;AAC3F,EAAA,MAAM,aAAa,KAAA,IAAS,IAAA;AAC5B,EAAA,MAAM,cAAc,MAAA,IAAU,IAAA;AAE9B,EAAA,uBACE,GAAA;AAAA,IAAC,KAAA;AAAA,IAAA;AAAA,MACC,KAAA,EAAO,UAAA;AAAA,MACP,MAAA,EAAQ,WAAA;AAAA,MACR,OAAA,EAAQ,WAAA;AAAA,MACR,IAAA,EAAK,cAAA;AAAA,MACL,KAAA,EAAM,4BAAA;AAAA,MACN,SAAA,EAAW,CAAA,SAAA,EAAY,SAAS,CAAA,CAAA,CAAG,IAAA,EAAK;AAAA,MACvC,GAAG,KAAA;AAAA,MAEJ,QAAA,kBAAA,GAAA;AAAA,QAAC,MAAA;AAAA,QAAA;AAAA,UACC,QAAA,EAAS,SAAA;AAAA,UACT,QAAA,EAAS,SAAA;AAAA,UACT,CAAA,EAAE,ilBAAA;AAAA,UACF,IAAA,EAAK;AAAA;AAAA;AACP;AAAA,GACF;AAEJ,CAAC;AAED,MAAA,CAAO,WAAA,GAAc,QAAA;;;;"}
|
|
@@ -1,25 +1,23 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { memo } from 'react';
|
|
3
3
|
|
|
4
|
-
const DarkMode = memo(
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
}
|
|
22
|
-
);
|
|
4
|
+
const DarkMode = memo(({ size = 24, width, height, className = "", ...props }) => {
|
|
5
|
+
const finalWidth = width ?? size;
|
|
6
|
+
const finalHeight = height ?? size;
|
|
7
|
+
return /* @__PURE__ */ jsx(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: finalWidth,
|
|
11
|
+
height: finalHeight,
|
|
12
|
+
viewBox: "0 -960 960 960",
|
|
13
|
+
fill: "currentColor",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
className: `css-icon ${className}`.trim(),
|
|
16
|
+
...props,
|
|
17
|
+
children: /* @__PURE__ */ jsx("path", { d: "M480-120q-150 0-255-105T120-480q0-150 105-255t255-105q8 0 17 .5t23 1.5q-36 32-56 79t-20 99q0 90 63 153t153 63q52 0 99-18.5t79-51.5q1 12 1.5 19.5t.5 14.5q0 150-105 255T480-120Z" })
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
});
|
|
23
21
|
DarkMode.displayName = "DarkMode";
|
|
24
22
|
|
|
25
23
|
export { DarkMode as default };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dark_mode.js","sources":["../../../../icons/react/dark_mode.tsx"],"sourcesContent":["import { SVGProps, memo } from 'react'\n\nexport interface DarkModeProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {\n /**\n * 图标尺寸\n */\n size?: number | string\n}\n\n/**\n * dark_mode 图标组件\n */\nconst DarkMode = memo(
|
|
1
|
+
{"version":3,"file":"dark_mode.js","sources":["../../../../icons/react/dark_mode.tsx"],"sourcesContent":["import { SVGProps, memo } from 'react'\n\nexport interface DarkModeProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {\n /**\n * 图标尺寸\n */\n size?: number | string\n}\n\n/**\n * dark_mode 图标组件\n */\nconst DarkMode = memo(({ size = 24, width, height, className = '', ...props }: DarkModeProps) => {\n const finalWidth = width ?? size\n const finalHeight = height ?? size\n\n return (\n <svg\n width={finalWidth}\n height={finalHeight}\n viewBox=\"0 -960 960 960\"\n fill=\"currentColor\"\n xmlns=\"http://www.w3.org/2000/svg\"\n className={`css-icon ${className}`.trim()}\n {...props}\n >\n <path d=\"M480-120q-150 0-255-105T120-480q0-150 105-255t255-105q8 0 17 .5t23 1.5q-36 32-56 79t-20 99q0 90 63 153t153 63q52 0 99-18.5t79-51.5q1 12 1.5 19.5t.5 14.5q0 150-105 255T480-120Z\" />\n </svg>\n )\n})\n\nDarkMode.displayName = 'DarkMode'\n\nexport default DarkMode\n"],"names":[],"mappings":";;;AAYA,MAAM,QAAA,GAAW,IAAA,CAAK,CAAC,EAAE,IAAA,GAAO,EAAA,EAAI,KAAA,EAAO,MAAA,EAAQ,SAAA,GAAY,EAAA,EAAI,GAAG,KAAA,EAAM,KAAqB;AAC/F,EAAA,MAAM,aAAa,KAAA,IAAS,IAAA;AAC5B,EAAA,MAAM,cAAc,MAAA,IAAU,IAAA;AAE9B,EAAA,uBACE,GAAA;AAAA,IAAC,KAAA;AAAA,IAAA;AAAA,MACC,KAAA,EAAO,UAAA;AAAA,MACP,MAAA,EAAQ,WAAA;AAAA,MACR,OAAA,EAAQ,gBAAA;AAAA,MACR,IAAA,EAAK,cAAA;AAAA,MACL,KAAA,EAAM,4BAAA;AAAA,MACN,SAAA,EAAW,CAAA,SAAA,EAAY,SAAS,CAAA,CAAA,CAAG,IAAA,EAAK;AAAA,MACvC,GAAG,KAAA;AAAA,MAEJ,QAAA,kBAAA,GAAA,CAAC,MAAA,EAAA,EAAK,CAAA,EAAE,iLAAA,EAAkL;AAAA;AAAA,GAC5L;AAEJ,CAAC;AAED,QAAA,CAAS,WAAA,GAAc,UAAA;;;;"}
|
|
@@ -15,7 +15,13 @@ const DoNotDisturbOn = memo(
|
|
|
15
15
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16
16
|
className: `css-icon ${className}`.trim(),
|
|
17
17
|
...props,
|
|
18
|
-
children: /* @__PURE__ */ jsx(
|
|
18
|
+
children: /* @__PURE__ */ jsx(
|
|
19
|
+
"path",
|
|
20
|
+
{
|
|
21
|
+
d: "M14.1797 10.8203V9.17969H5.82031V10.8203H14.1797ZM4.10156 4.14062C5.74219 2.5 7.70833 1.67969 10 1.67969C12.2917 1.67969 14.2448 2.5 15.8594 4.14062C17.5 5.75521 18.3203 7.70833 18.3203 10C18.3203 12.2917 17.5 14.2578 15.8594 15.8984C14.2448 17.513 12.2917 18.3203 10 18.3203C7.70833 18.3203 5.74219 17.513 4.10156 15.8984C2.48698 14.2578 1.67969 12.2917 1.67969 10C1.67969 7.70833 2.48698 5.75521 4.10156 4.14062Z",
|
|
22
|
+
fill: "currentColor"
|
|
23
|
+
}
|
|
24
|
+
)
|
|
19
25
|
}
|
|
20
26
|
);
|
|
21
27
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"do_not_disturb_on.js","sources":["../../../../icons/react/do_not_disturb_on.tsx"],"sourcesContent":["import { SVGProps, memo } from 'react'\n\nexport interface DoNotDisturbOnProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {\n /**\n * 图标尺寸\n */\n size?: number | string\n}\n\n/**\n * do_not_disturb_on 图标组件\n */\nconst DoNotDisturbOn = memo(\n ({ size = 24, width, height, className = '', ...props }: DoNotDisturbOnProps) => {\n const finalWidth = width ?? size\n const finalHeight = height ?? size\n\n return (\n <svg\n width={finalWidth}\n height={finalHeight}\n viewBox=\"0 0 20 20\"\n fill=\"currentColor\"\n xmlns=\"http://www.w3.org/2000/svg\"\n className={`css-icon ${className}`.trim()}\n {...props}\n >\n <path
|
|
1
|
+
{"version":3,"file":"do_not_disturb_on.js","sources":["../../../../icons/react/do_not_disturb_on.tsx"],"sourcesContent":["import { SVGProps, memo } from 'react'\n\nexport interface DoNotDisturbOnProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {\n /**\n * 图标尺寸\n */\n size?: number | string\n}\n\n/**\n * do_not_disturb_on 图标组件\n */\nconst DoNotDisturbOn = memo(\n ({ size = 24, width, height, className = '', ...props }: DoNotDisturbOnProps) => {\n const finalWidth = width ?? size\n const finalHeight = height ?? size\n\n return (\n <svg\n width={finalWidth}\n height={finalHeight}\n viewBox=\"0 0 20 20\"\n fill=\"currentColor\"\n xmlns=\"http://www.w3.org/2000/svg\"\n className={`css-icon ${className}`.trim()}\n {...props}\n >\n <path\n d=\"M14.1797 10.8203V9.17969H5.82031V10.8203H14.1797ZM4.10156 4.14062C5.74219 2.5 7.70833 1.67969 10 1.67969C12.2917 1.67969 14.2448 2.5 15.8594 4.14062C17.5 5.75521 18.3203 7.70833 18.3203 10C18.3203 12.2917 17.5 14.2578 15.8594 15.8984C14.2448 17.513 12.2917 18.3203 10 18.3203C7.70833 18.3203 5.74219 17.513 4.10156 15.8984C2.48698 14.2578 1.67969 12.2917 1.67969 10C1.67969 7.70833 2.48698 5.75521 4.10156 4.14062Z\"\n fill=\"currentColor\"\n />\n </svg>\n )\n }\n)\n\nDoNotDisturbOn.displayName = 'DoNotDisturbOn'\n\nexport default DoNotDisturbOn\n"],"names":[],"mappings":";;;AAYA,MAAM,cAAA,GAAiB,IAAA;AAAA,EACrB,CAAC,EAAE,IAAA,GAAO,EAAA,EAAI,KAAA,EAAO,QAAQ,SAAA,GAAY,EAAA,EAAI,GAAG,KAAA,EAAM,KAA2B;AAC/E,IAAA,MAAM,aAAa,KAAA,IAAS,IAAA;AAC5B,IAAA,MAAM,cAAc,MAAA,IAAU,IAAA;AAE9B,IAAA,uBACE,GAAA;AAAA,MAAC,KAAA;AAAA,MAAA;AAAA,QACC,KAAA,EAAO,UAAA;AAAA,QACP,MAAA,EAAQ,WAAA;AAAA,QACR,OAAA,EAAQ,WAAA;AAAA,QACR,IAAA,EAAK,cAAA;AAAA,QACL,KAAA,EAAM,4BAAA;AAAA,QACN,SAAA,EAAW,CAAA,SAAA,EAAY,SAAS,CAAA,CAAA,CAAG,IAAA,EAAK;AAAA,QACvC,GAAG,KAAA;AAAA,QAEJ,QAAA,kBAAA,GAAA;AAAA,UAAC,MAAA;AAAA,UAAA;AAAA,YACC,CAAA,EAAE,gaAAA;AAAA,YACF,IAAA,EAAK;AAAA;AAAA;AACP;AAAA,KACF;AAAA,EAEJ;AACF;AAEA,cAAA,CAAe,WAAA,GAAc,gBAAA;;;;"}
|
|
@@ -1,25 +1,23 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { memo } from 'react';
|
|
3
3
|
|
|
4
|
-
const Error = memo(
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
}
|
|
22
|
-
);
|
|
4
|
+
const Error = memo(({ size = 24, width, height, className = "", ...props }) => {
|
|
5
|
+
const finalWidth = width ?? size;
|
|
6
|
+
const finalHeight = height ?? size;
|
|
7
|
+
return /* @__PURE__ */ jsx(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: finalWidth,
|
|
11
|
+
height: finalHeight,
|
|
12
|
+
viewBox: "0 -960 960 960",
|
|
13
|
+
fill: "currentColor",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
className: `css-icon ${className}`.trim(),
|
|
16
|
+
...props,
|
|
17
|
+
children: /* @__PURE__ */ jsx("path", { d: "M503.5-289.48q9.5-9.48 9.5-23.5t-9.48-23.52q-9.48-9.5-23.5-9.5t-23.52 9.48q-9.5 9.48-9.5 23.5t9.48 23.52q9.48 9.5 23.5 9.5t23.52-9.48ZM453-433h60v-253h-60v253Zm27.27 353q-82.74 0-155.5-31.5Q252-143 197.5-197.5t-86-127.34Q80-397.68 80-480.5t31.5-155.66Q143-709 197.5-763t127.34-85.5Q397.68-880 480.5-880t155.66 31.5Q709-817 763-763t85.5 127Q880-563 880-480.27q0 82.74-31.5 155.5Q817-252 763-197.68q-54 54.31-127 86Q563-80 480.27-80Z" })
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
});
|
|
23
21
|
Error.displayName = "Error";
|
|
24
22
|
|
|
25
23
|
export { Error as default };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"error.js","sources":["../../../../icons/react/error.tsx"],"sourcesContent":["import { SVGProps, memo } from 'react'\n\nexport interface ErrorProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {\n /**\n * 图标尺寸\n */\n size?: number | string\n}\n\n/**\n * error 图标组件\n */\nconst Error = memo(
|
|
1
|
+
{"version":3,"file":"error.js","sources":["../../../../icons/react/error.tsx"],"sourcesContent":["import { SVGProps, memo } from 'react'\n\nexport interface ErrorProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {\n /**\n * 图标尺寸\n */\n size?: number | string\n}\n\n/**\n * error 图标组件\n */\nconst Error = memo(({ size = 24, width, height, className = '', ...props }: ErrorProps) => {\n const finalWidth = width ?? size\n const finalHeight = height ?? size\n\n return (\n <svg\n width={finalWidth}\n height={finalHeight}\n viewBox=\"0 -960 960 960\"\n fill=\"currentColor\"\n xmlns=\"http://www.w3.org/2000/svg\"\n className={`css-icon ${className}`.trim()}\n {...props}\n >\n <path d=\"M503.5-289.48q9.5-9.48 9.5-23.5t-9.48-23.52q-9.48-9.5-23.5-9.5t-23.52 9.48q-9.5 9.48-9.5 23.5t9.48 23.52q9.48 9.5 23.5 9.5t23.52-9.48ZM453-433h60v-253h-60v253Zm27.27 353q-82.74 0-155.5-31.5Q252-143 197.5-197.5t-86-127.34Q80-397.68 80-480.5t31.5-155.66Q143-709 197.5-763t127.34-85.5Q397.68-880 480.5-880t155.66 31.5Q709-817 763-763t85.5 127Q880-563 880-480.27q0 82.74-31.5 155.5Q817-252 763-197.68q-54 54.31-127 86Q563-80 480.27-80Z\" />\n </svg>\n )\n})\n\nError.displayName = 'Error'\n\nexport default Error\n"],"names":[],"mappings":";;;AAYA,MAAM,KAAA,GAAQ,IAAA,CAAK,CAAC,EAAE,IAAA,GAAO,EAAA,EAAI,KAAA,EAAO,MAAA,EAAQ,SAAA,GAAY,EAAA,EAAI,GAAG,KAAA,EAAM,KAAkB;AACzF,EAAA,MAAM,aAAa,KAAA,IAAS,IAAA;AAC5B,EAAA,MAAM,cAAc,MAAA,IAAU,IAAA;AAE9B,EAAA,uBACE,GAAA;AAAA,IAAC,KAAA;AAAA,IAAA;AAAA,MACC,KAAA,EAAO,UAAA;AAAA,MACP,MAAA,EAAQ,WAAA;AAAA,MACR,OAAA,EAAQ,gBAAA;AAAA,MACR,IAAA,EAAK,cAAA;AAAA,MACL,KAAA,EAAM,4BAAA;AAAA,MACN,SAAA,EAAW,CAAA,SAAA,EAAY,SAAS,CAAA,CAAA,CAAG,IAAA,EAAK;AAAA,MACvC,GAAG,KAAA;AAAA,MAEJ,QAAA,kBAAA,GAAA,CAAC,MAAA,EAAA,EAAK,CAAA,EAAE,ibAAA,EAAkb;AAAA;AAAA,GAC5b;AAEJ,CAAC;AAED,KAAA,CAAM,WAAA,GAAc,OAAA;;;;"}
|
package/dist/icons/react/home.js
CHANGED
|
@@ -1,28 +1,26 @@
|
|
|
1
1
|
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { memo } from 'react';
|
|
3
3
|
|
|
4
|
-
const Home = memo(
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
}
|
|
25
|
-
);
|
|
4
|
+
const Home = memo(({ size = 24, width, height, className = "", ...props }) => {
|
|
5
|
+
const finalWidth = width ?? size;
|
|
6
|
+
const finalHeight = height ?? size;
|
|
7
|
+
return /* @__PURE__ */ jsxs(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: finalWidth,
|
|
11
|
+
height: finalHeight,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "currentColor",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
className: `css-icon ${className}`.trim(),
|
|
16
|
+
...props,
|
|
17
|
+
children: [
|
|
18
|
+
/* @__PURE__ */ jsx("path", { d: "M0 0h24v24H0z", fill: "none" }),
|
|
19
|
+
/* @__PURE__ */ jsx("path", { d: "M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z" })
|
|
20
|
+
]
|
|
21
|
+
}
|
|
22
|
+
);
|
|
23
|
+
});
|
|
26
24
|
Home.displayName = "Home";
|
|
27
25
|
|
|
28
26
|
export { Home as default };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"home.js","sources":["../../../../icons/react/home.tsx"],"sourcesContent":["import { SVGProps, memo } from 'react'\n\nexport interface HomeProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {\n /**\n * 图标尺寸\n */\n size?: number | string\n}\n\n/**\n * home 图标组件\n */\nconst Home = memo(
|
|
1
|
+
{"version":3,"file":"home.js","sources":["../../../../icons/react/home.tsx"],"sourcesContent":["import { SVGProps, memo } from 'react'\n\nexport interface HomeProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {\n /**\n * 图标尺寸\n */\n size?: number | string\n}\n\n/**\n * home 图标组件\n */\nconst Home = memo(({ size = 24, width, height, className = '', ...props }: HomeProps) => {\n const finalWidth = width ?? size\n const finalHeight = height ?? size\n\n return (\n <svg\n width={finalWidth}\n height={finalHeight}\n viewBox=\"0 0 24 24\"\n fill=\"currentColor\"\n xmlns=\"http://www.w3.org/2000/svg\"\n className={`css-icon ${className}`.trim()}\n {...props}\n >\n <path d=\"M0 0h24v24H0z\" fill=\"none\" />\n <path d=\"M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z\" />\n </svg>\n )\n})\n\nHome.displayName = 'Home'\n\nexport default Home\n"],"names":[],"mappings":";;;AAYA,MAAM,IAAA,GAAO,IAAA,CAAK,CAAC,EAAE,IAAA,GAAO,EAAA,EAAI,KAAA,EAAO,MAAA,EAAQ,SAAA,GAAY,EAAA,EAAI,GAAG,KAAA,EAAM,KAAiB;AACvF,EAAA,MAAM,aAAa,KAAA,IAAS,IAAA;AAC5B,EAAA,MAAM,cAAc,MAAA,IAAU,IAAA;AAE9B,EAAA,uBACE,IAAA;AAAA,IAAC,KAAA;AAAA,IAAA;AAAA,MACC,KAAA,EAAO,UAAA;AAAA,MACP,MAAA,EAAQ,WAAA;AAAA,MACR,OAAA,EAAQ,WAAA;AAAA,MACR,IAAA,EAAK,cAAA;AAAA,MACL,KAAA,EAAM,4BAAA;AAAA,MACN,SAAA,EAAW,CAAA,SAAA,EAAY,SAAS,CAAA,CAAA,CAAG,IAAA,EAAK;AAAA,MACvC,GAAG,KAAA;AAAA,MAEJ,QAAA,EAAA;AAAA,wBAAA,GAAA,CAAC,MAAA,EAAA,EAAK,CAAA,EAAE,eAAA,EAAgB,IAAA,EAAK,MAAA,EAAO,CAAA;AAAA,wBACpC,GAAA,CAAC,MAAA,EAAA,EAAK,CAAA,EAAE,qCAAA,EAAsC;AAAA;AAAA;AAAA,GAChD;AAEJ,CAAC;AAED,IAAA,CAAK,WAAA,GAAc,MAAA;;;;"}
|