diff --git a/.changeset/perfect-garlics-sit.md b/.changeset/perfect-garlics-sit.md new file mode 100644 index 0000000..1d3d40d --- /dev/null +++ b/.changeset/perfect-garlics-sit.md @@ -0,0 +1,14 @@ +--- +"@wisdesign/lsicon": patch +--- + +[Feature] add 8 new icons + + - SignOutIcon + - AtIcon + - ChatIcon + - BookTwoIcon + - SignOutFilledIcon + - AtFilledIcon + - ChatFilledIcon + - BookTwoFilledIcon \ No newline at end of file diff --git a/components/AtFilledIcon.tsx b/components/AtFilledIcon.tsx new file mode 100644 index 0000000..684b291 --- /dev/null +++ b/components/AtFilledIcon.tsx @@ -0,0 +1,23 @@ +import * as React from "react"; +import type { SVGProps } from "react"; +const AtFilledIcon = (props: SVGProps) => ( + + + + + +); +export default AtFilledIcon; diff --git a/components/AtIcon.tsx b/components/AtIcon.tsx new file mode 100644 index 0000000..114d2d6 --- /dev/null +++ b/components/AtIcon.tsx @@ -0,0 +1,21 @@ +import * as React from "react"; +import type { SVGProps } from "react"; +const AtIcon = (props: SVGProps) => ( + + + + + +); +export default AtIcon; diff --git a/components/BookTwoFilledIcon.tsx b/components/BookTwoFilledIcon.tsx new file mode 100644 index 0000000..bae3dff --- /dev/null +++ b/components/BookTwoFilledIcon.tsx @@ -0,0 +1,23 @@ +import * as React from "react"; +import type { SVGProps } from "react"; +const BookTwoFilledIcon = (props: SVGProps) => ( + + + + + +); +export default BookTwoFilledIcon; diff --git a/components/BookTwoIcon.tsx b/components/BookTwoIcon.tsx new file mode 100644 index 0000000..fa31685 --- /dev/null +++ b/components/BookTwoIcon.tsx @@ -0,0 +1,21 @@ +import * as React from "react"; +import type { SVGProps } from "react"; +const BookTwoIcon = (props: SVGProps) => ( + + + + + +); +export default BookTwoIcon; diff --git a/components/ChatFilledIcon.tsx b/components/ChatFilledIcon.tsx new file mode 100644 index 0000000..608cb83 --- /dev/null +++ b/components/ChatFilledIcon.tsx @@ -0,0 +1,23 @@ +import * as React from "react"; +import type { SVGProps } from "react"; +const ChatFilledIcon = (props: SVGProps) => ( + + + + + +); +export default ChatFilledIcon; diff --git a/components/ChatIcon.tsx b/components/ChatIcon.tsx new file mode 100644 index 0000000..16e2789 --- /dev/null +++ b/components/ChatIcon.tsx @@ -0,0 +1,21 @@ +import * as React from "react"; +import type { SVGProps } from "react"; +const ChatIcon = (props: SVGProps) => ( + + + + + +); +export default ChatIcon; diff --git a/components/SignOutFilledIcon.tsx b/components/SignOutFilledIcon.tsx new file mode 100644 index 0000000..830d32b --- /dev/null +++ b/components/SignOutFilledIcon.tsx @@ -0,0 +1,23 @@ +import * as React from "react"; +import type { SVGProps } from "react"; +const SignOutFilledIcon = (props: SVGProps) => ( + + + + + +); +export default SignOutFilledIcon; diff --git a/components/SignOutIcon.tsx b/components/SignOutIcon.tsx new file mode 100644 index 0000000..f6022b3 --- /dev/null +++ b/components/SignOutIcon.tsx @@ -0,0 +1,21 @@ +import * as React from "react"; +import type { SVGProps } from "react"; +const SignOutIcon = (props: SVGProps) => ( + + + + + +); +export default SignOutIcon; diff --git a/components/index.ts b/components/index.ts index 2b389e9..26db427 100644 --- a/components/index.ts +++ b/components/index.ts @@ -379,6 +379,8 @@ export { default as LinejoinRoundIcon } from "./LinejoinRoundIcon.tsx"; export { default as LinejoinRoundFilledIcon } from "./LinejoinRoundFilledIcon.tsx"; export { default as ExitIcon } from "./ExitIcon.tsx"; export { default as ExitFilledIcon } from "./ExitFilledIcon.tsx"; +export { default as SignOutIcon } from "./SignOutIcon.tsx"; +export { default as SignOutFilledIcon } from "./SignOutFilledIcon.tsx"; export { default as LightningIcon } from "./LightningIcon.tsx"; export { default as LightningFilledIcon } from "./LightningFilledIcon.tsx"; export { default as PieTwoIcon } from "./PieTwoIcon.tsx"; @@ -625,6 +627,12 @@ export { default as NumberSignIcon } from "./NumberSignIcon.tsx"; export { default as NumberSignFilledIcon } from "./NumberSignFilledIcon.tsx"; export { default as BulbIcon } from "./BulbIcon.tsx"; export { default as BulbFilledIcon } from "./BulbFilledIcon.tsx"; +export { default as AtIcon } from "./AtIcon.tsx"; +export { default as AtFilledIcon } from "./AtFilledIcon.tsx"; +export { default as ChatIcon } from "./ChatIcon.tsx"; +export { default as ChatFilledIcon } from "./ChatFilledIcon.tsx"; +export { default as BookTwoIcon } from "./BookTwoIcon.tsx"; +export { default as BookTwoFilledIcon } from "./BookTwoFilledIcon.tsx"; export { default as EarthTwoIcon } from "./EarthTwoIcon.tsx"; export { default as EarthTwoFilledIcon } from "./EarthTwoFilledIcon.tsx"; export { default as ConsumeIcon } from "./ConsumeIcon.tsx"; diff --git a/components/meta.js b/components/meta.js index f28a4e3..8ee7514 100644 --- a/components/meta.js +++ b/components/meta.js @@ -413,6 +413,7 @@ export default [ name: "LinejoinRoundIcon", }, { type: "component", title: "Exit", name: "ExitIcon" }, + { type: "component", title: "SignOut", name: "SignOutIcon" }, ], }, { @@ -582,6 +583,9 @@ export default [ { type: "component", title: "Book", name: "BookIcon" }, { type: "component", title: "NumberSign", name: "NumberSignIcon" }, { type: "component", title: "Bulb", name: "BulbIcon" }, + { type: "component", title: "At", name: "AtIcon" }, + { type: "component", title: "Chat", name: "ChatIcon" }, + { type: "component", title: "BookTwo", name: "BookTwoIcon" }, { type: "component", title: "EarthTwo", name: "EarthTwoIcon" }, ], }, @@ -1599,6 +1603,11 @@ export default [ name: "LinejoinRoundFilledIcon", }, { type: "component", title: "ExitFilled", name: "ExitFilledIcon" }, + { + type: "component", + title: "SignOutFilled", + name: "SignOutFilledIcon", + }, ], }, { @@ -2072,6 +2081,13 @@ export default [ name: "NumberSignFilledIcon", }, { type: "component", title: "BulbFilled", name: "BulbFilledIcon" }, + { type: "component", title: "AtFilled", name: "AtFilledIcon" }, + { type: "component", title: "ChatFilled", name: "ChatFilledIcon" }, + { + type: "component", + title: "BookTwoFilled", + name: "BookTwoFilledIcon", + }, { type: "component", title: "EarthTwoFilled", diff --git a/dist/AtFilledIcon.d.ts b/dist/AtFilledIcon.d.ts new file mode 100644 index 0000000..8c5b172 --- /dev/null +++ b/dist/AtFilledIcon.d.ts @@ -0,0 +1,4 @@ +import * as React from "react"; +import type { SVGProps } from "react"; +declare const AtFilledIcon: (props: SVGProps) => React.JSX.Element; +export default AtFilledIcon; diff --git a/dist/AtIcon.d.ts b/dist/AtIcon.d.ts new file mode 100644 index 0000000..3f87e9f --- /dev/null +++ b/dist/AtIcon.d.ts @@ -0,0 +1,4 @@ +import * as React from "react"; +import type { SVGProps } from "react"; +declare const AtIcon: (props: SVGProps) => React.JSX.Element; +export default AtIcon; diff --git a/dist/BookTwoFilledIcon.d.ts b/dist/BookTwoFilledIcon.d.ts new file mode 100644 index 0000000..5edc548 --- /dev/null +++ b/dist/BookTwoFilledIcon.d.ts @@ -0,0 +1,4 @@ +import * as React from "react"; +import type { SVGProps } from "react"; +declare const BookTwoFilledIcon: (props: SVGProps) => React.JSX.Element; +export default BookTwoFilledIcon; diff --git a/dist/BookTwoIcon.d.ts b/dist/BookTwoIcon.d.ts new file mode 100644 index 0000000..b4ff1c7 --- /dev/null +++ b/dist/BookTwoIcon.d.ts @@ -0,0 +1,4 @@ +import * as React from "react"; +import type { SVGProps } from "react"; +declare const BookTwoIcon: (props: SVGProps) => React.JSX.Element; +export default BookTwoIcon; diff --git a/dist/ChatFilledIcon.d.ts b/dist/ChatFilledIcon.d.ts new file mode 100644 index 0000000..62dec02 --- /dev/null +++ b/dist/ChatFilledIcon.d.ts @@ -0,0 +1,4 @@ +import * as React from "react"; +import type { SVGProps } from "react"; +declare const ChatFilledIcon: (props: SVGProps) => React.JSX.Element; +export default ChatFilledIcon; diff --git a/dist/ChatIcon.d.ts b/dist/ChatIcon.d.ts new file mode 100644 index 0000000..3cb5474 --- /dev/null +++ b/dist/ChatIcon.d.ts @@ -0,0 +1,4 @@ +import * as React from "react"; +import type { SVGProps } from "react"; +declare const ChatIcon: (props: SVGProps) => React.JSX.Element; +export default ChatIcon; diff --git a/dist/SignOutFilledIcon.d.ts b/dist/SignOutFilledIcon.d.ts new file mode 100644 index 0000000..6cd063f --- /dev/null +++ b/dist/SignOutFilledIcon.d.ts @@ -0,0 +1,4 @@ +import * as React from "react"; +import type { SVGProps } from "react"; +declare const SignOutFilledIcon: (props: SVGProps) => React.JSX.Element; +export default SignOutFilledIcon; diff --git a/dist/SignOutIcon.d.ts b/dist/SignOutIcon.d.ts new file mode 100644 index 0000000..4832bc6 --- /dev/null +++ b/dist/SignOutIcon.d.ts @@ -0,0 +1,4 @@ +import * as React from "react"; +import type { SVGProps } from "react"; +declare const SignOutIcon: (props: SVGProps) => React.JSX.Element; +export default SignOutIcon; diff --git a/dist/icons.esm.js b/dist/icons.esm.js index adafe0f..28bf2d1 100644 --- a/dist/icons.esm.js +++ b/dist/icons.esm.js @@ -762,6 +762,10 @@ const ExitIcon = (props) => /* @__PURE__ */ React.createElement("svg", { xmlns: const ExitFilledIcon = (props) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 16 16", ...props }, /* @__PURE__ */ React.createElement("g", { id: "theme=filled" }, /* @__PURE__ */ React.createElement("g", { id: "Vector" }, /* @__PURE__ */ React.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M2 2H14V5H13V3H3V13H13V11H14V14H2.50069H2V2Z", clipRule: "evenodd" }), /* @__PURE__ */ React.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M9.14645 5.64645L9.85355 6.35355L8.70711 7.5H14V8.5H8.70711L9.85355 9.64645L9.14645 10.3536L6.79289 8L9.14645 5.64645Z", clipRule: "evenodd" })))); +const SignOutIcon = (props) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 16 16", ...props }, /* @__PURE__ */ React.createElement("g", { id: "theme=outline" }, /* @__PURE__ */ React.createElement("path", { id: "Vector", stroke: "currentColor", d: "M6 8H13.5M13.5 8L11 5.5M13.5 8L11 10.5M8 13.5C3.70423 13.5 2.5 13.5 2.5 13.5V2.5H8" }))); + +const SignOutFilledIcon = (props) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 16 16", ...props }, /* @__PURE__ */ React.createElement("g", { id: "theme=filled" }, /* @__PURE__ */ React.createElement("path", { id: "Vector", fill: "currentColor", fillRule: "evenodd", d: "M2 2H8V3H3V13H8V14H2V2ZM12.2929 7.5L10.6464 5.85355L11.3536 5.14645L14.2071 8L11.3536 10.8536L10.6464 10.1464L12.2929 8.5H6V7.5H12.2929Z", clipRule: "evenodd" }))); + const LightningIcon = (props) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 16 16", ...props }, /* @__PURE__ */ React.createElement("g", { id: "theme=outline" }, /* @__PURE__ */ React.createElement("path", { id: "Vector", stroke: "currentColor", d: "M3 8.5L8.5 1.5L8.49994 7.5H11.9999L6.5 14.5V8.5H3Z" }))); const LightningFilledIcon = (props) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 16 16", ...props }, /* @__PURE__ */ React.createElement("g", { id: "theme=filled" }, /* @__PURE__ */ React.createElement("path", { id: "Vector", fill: "currentColor", fillRule: "evenodd", d: "M8.66344 1.02746C8.86488 1.09714 9.00001 1.28685 9 1.5L8.99995 7H11.9999C12.1914 7 12.366 7.10928 12.4496 7.28143C12.5333 7.45358 12.5114 7.6584 12.3931 7.80891L6.89317 14.8089C6.76148 14.9765 6.53801 15.0422 6.33657 14.9725C6.13513 14.9029 6 14.7131 6 14.5V9H3C2.80859 9 2.63398 8.89072 2.55031 8.71857C2.46663 8.54641 2.48859 8.3416 2.60684 8.19109L8.10684 1.19109C8.23853 1.02348 8.462 0.957792 8.66344 1.02746Z", clipRule: "evenodd" }))); @@ -1254,6 +1258,18 @@ const BulbIcon = (props) => /* @__PURE__ */ React.createElement("svg", { xmlns: const BulbFilledIcon = (props) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 16 16", ...props }, /* @__PURE__ */ React.createElement("g", { id: "theme=filled" }, /* @__PURE__ */ React.createElement("g", { id: "Subtract" }, /* @__PURE__ */ React.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M8 1C5.23858 1 3 3.23858 3 6V6.60611L5 11.1061V13H11V11.1061L13 6.60611V6C13 3.23858 10.7614 1 8 1ZM7.25 7.66667L6.1 9.2L6.9 9.8L7.25 9.33333L7.5 9.66667V12H8.5V9.66667L8.75 9.33333L9.1 9.8L9.9 9.2L8.75 7.66667L8 8.66667L7.25 7.66667Z", clipRule: "evenodd" }), /* @__PURE__ */ React.createElement("path", { fill: "currentColor", d: "M11 15V14H5V15H11Z" })))); +const AtIcon = (props) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 16 16", ...props }, /* @__PURE__ */ React.createElement("g", { id: "theme=outline" }, /* @__PURE__ */ React.createElement("path", { id: "Vector", stroke: "currentColor", d: "M11.3462 8.09619C11.3462 9.89112 9.89112 11.3462 8.09619 11.3462C6.30127 11.3462 4.84619 9.89112 4.84619 8.09619C4.84619 6.30127 6.30127 4.84619 8.09619 4.84619C9.89112 4.84619 11.3462 6.30127 11.3462 8.09619ZM11.3462 8.09619C11.3462 9.29281 12.0737 10.2629 12.9712 10.2629C13.8687 10.2629 14.5962 9.29282 14.5962 8.0962C14.5962 6.43271 13.9616 4.76921 12.6924 3.5C10.154 0.961592 6.03841 0.961592 3.5 3.5C0.961592 6.03841 0.961592 10.154 3.5 12.6924C6.03841 15.2308 10.154 15.2308 12.6924 12.6924M11.3462 8.09619V5.38786" }))); + +const AtFilledIcon = (props) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 16 16", ...props }, /* @__PURE__ */ React.createElement("g", { id: "theme=filled" }, /* @__PURE__ */ React.createElement("path", { id: "Vector (Stroke)", fill: "currentColor", fillRule: "evenodd", d: "M12.3388 3.85355C9.99569 1.51041 6.1967 1.51041 3.85355 3.85355C1.51041 6.1967 1.5104 9.99569 3.85355 12.3388C6.1967 14.682 9.99569 14.682 12.3388 12.3388L13.0459 13.0459C10.3123 15.7796 5.88011 15.7796 3.14644 13.0459C0.412774 10.3123 0.412774 5.88011 3.14644 3.14644C5.88011 0.412774 10.3123 0.412774 13.0459 3.14644C14.4127 4.51318 15.0962 6.30552 15.0962 8.0962C15.0962 8.79223 14.8852 9.44162 14.5202 9.92826C14.1551 10.4151 13.6126 10.7629 12.9712 10.7629C12.3298 10.7629 11.7872 10.4151 11.4221 9.92826C11.4119 9.91461 11.4018 9.90084 11.3918 9.88694C10.7563 11.0541 9.51872 11.8462 8.09619 11.8462C6.02512 11.8462 4.34619 10.1673 4.34619 8.09619C4.34619 6.02512 6.02512 4.34619 8.09619 4.34619C9.18272 4.34619 10.1613 4.80828 10.8462 5.54666V5.38786H11.8462V8.09619C11.8462 8.59678 11.999 9.03073 12.2221 9.32826C12.4452 9.62563 12.7151 9.76286 12.9712 9.76286C13.2273 9.76286 13.4972 9.62564 13.7202 9.32826C13.9434 9.03073 14.0962 8.59679 14.0962 8.0962C14.0962 6.55989 13.5105 5.02522 12.3388 3.85355ZM10.8462 8.09619C10.8462 6.57741 9.61497 5.34619 8.09619 5.34619C6.57741 5.34619 5.34619 6.57741 5.34619 8.09619C5.34619 9.61497 6.57741 10.8462 8.09619 10.8462C9.61497 10.8462 10.8462 9.61497 10.8462 8.09619Z", clipRule: "evenodd" }))); + +const ChatIcon = (props) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 16 16", ...props }, /* @__PURE__ */ React.createElement("g", { id: "theme=outline" }, /* @__PURE__ */ React.createElement("path", { id: "Vector", stroke: "currentColor", d: "M8 13.9167C11.5899 13.9167 14.5 11.249 14.5 7.95833C14.5 4.66764 11.5899 2 8 2C4.41015 2 1.5 4.66764 1.5 7.95833C1.5 9.38295 2.04542 10.6908 2.9553 11.716C3.36766 12.1806 3.69067 12.7767 3.48595 13.3632C3.35353 13.7426 3.15269 14.0899 2.89807 14.3904C3.01074 14.4106 3.125 14.4264 3.24032 14.4376C3.38049 14.4513 3.52279 14.4583 3.66667 14.4583C4.59256 14.4583 5.45067 14.1679 6.15485 13.6732C6.73977 13.8316 7.35905 13.9167 8 13.9167Z" }))); + +const ChatFilledIcon = (props) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 16 16", ...props }, /* @__PURE__ */ React.createElement("g", { id: "theme=filled" }, /* @__PURE__ */ React.createElement("path", { id: "Vector", fill: "currentColor", fillRule: "evenodd", d: "M3.19173 14.9353C3.06316 14.9227 2.93572 14.9051 2.80998 14.8826C2.63395 14.8511 2.48814 14.728 2.4276 14.5597C2.36705 14.3914 2.40099 14.2036 2.51659 14.0672C2.73223 13.8127 2.90202 13.5189 3.01388 13.1984C3.12229 12.8878 2.97191 12.4879 2.58134 12.0479C1.59664 10.9384 1 9.51454 1 7.95833C1 4.35144 4.17585 1.5 8 1.5C11.8242 1.5 15 4.35144 15 7.95833C15 11.5652 11.8242 14.4167 8 14.4167C7.39537 14.4167 6.8079 14.3459 6.24709 14.2125C5.50025 14.6849 4.61475 14.9583 3.66667 14.9583C3.50655 14.9583 3.34804 14.9505 3.19173 14.9353Z", clipRule: "evenodd" }))); + +const BookTwoIcon = (props) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 16 16", ...props }, /* @__PURE__ */ React.createElement("g", { id: "theme=outline" }, /* @__PURE__ */ React.createElement("path", { id: "Vector", stroke: "currentColor", d: "M8 3.70833C6.85003 2.67908 5.33143 2.05323 3.66667 2.05323C2.90696 2.05323 2.17769 2.18356 1.5 2.42309V12.7148C2.17769 12.4752 2.90696 12.3449 3.66667 12.3449C5.33143 12.3449 6.85003 12.9707 8 14M8 3.70833C9.14997 2.67908 10.6686 2.05323 12.3333 2.05323C13.093 2.05323 13.8223 2.18356 14.5 2.42309V12.7148C13.8223 12.4752 13.093 12.3449 12.3333 12.3449C10.6686 12.3449 9.14997 12.9707 8 14M8 3.70833V14" }))); + +const BookTwoFilledIcon = (props) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 16 16", ...props }, /* @__PURE__ */ React.createElement("g", { id: "theme=filled" }, /* @__PURE__ */ React.createElement("path", { id: "Vector", fill: "currentColor", fillRule: "evenodd", d: "M8 3.05541C6.80827 2.11494 5.30257 1.55322 3.66667 1.55322C2.84941 1.55322 2.06384 1.69348 1.33338 1.95167L1 2.0695V13.4218L1.66662 13.1862C2.29154 12.9653 2.9645 12.8449 3.66667 12.8449C5.2037 12.8449 6.6047 13.4222 7.66654 14.3726L8 14.671L8.33346 14.3726C9.3953 13.4222 10.7963 12.8449 12.3333 12.8449C13.0355 12.8449 13.7085 12.9653 14.3334 13.1862L15 13.4218V2.0695L14.6666 1.95167C13.9362 1.69348 13.1506 1.55322 12.3333 1.55322C10.6974 1.55322 9.19173 2.11494 8 3.05541Z", clipRule: "evenodd" }))); + const EarthTwoIcon = (props) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 16 16", ...props }, /* @__PURE__ */ React.createElement("g", { id: "theme=outline" }, /* @__PURE__ */ React.createElement("path", { id: "Vector", stroke: "currentColor", d: "M8 14.5C11.5899 14.5 14.5 11.5899 14.5 8C14.5 4.41015 11.5899 1.5 8 1.5C4.41015 1.5 1.5 4.41015 1.5 8C1.5 11.5899 4.41015 14.5 8 14.5ZM8 14.5L8.38142 12.7625C8.39568 12.6849 8.39182 12.605 8.37013 12.5291C8.34845 12.4532 8.30954 12.3834 8.25642 12.325L7.08142 11.0562C7.0152 10.9841 6.97161 10.8942 6.95606 10.7975C6.9405 10.7008 6.95367 10.6017 6.99392 10.5125L7.85017 8.59374C7.89195 8.49428 7.96554 8.41149 8.05941 8.35834C8.15329 8.30518 8.26214 8.28466 8.36892 8.29999L9.80017 8.49374C9.86919 8.5014 9.93551 8.52493 9.99392 8.56249L13.6328 10.7975M3.49361 3.31571L3.49986 4.79998C3.45087 4.91761 3.44863 5.0495 3.49361 5.16873L4.21236 7.08123C4.24045 7.16094 4.28854 7.23211 4.35201 7.28792C4.41548 7.34373 4.49221 7.38231 4.57486 7.39998L5.91236 7.68748C5.9866 7.70249 6.05632 7.7346 6.11598 7.78124C6.17565 7.82789 6.22363 7.88781 6.25611 7.95623L6.49361 8.44998C6.53581 8.53346 6.60005 8.6038 6.67938 8.65338C6.7587 8.70296 6.85008 8.72988 6.94361 8.73123H7.78736M9.5 1.5L10.1126 3.24373C10.1663 3.34244 10.1856 3.4562 10.1675 3.5671C10.1494 3.67799 10.0949 3.7797 10.0126 3.85623L8.33135 5.37498C8.3032 5.40185 8.27169 5.42496 8.2376 5.44373L7.46885 5.86873C7.39557 5.90761 7.31428 5.929 7.23135 5.93123H5.89385C5.79532 5.93173 5.69907 5.96097 5.61692 6.01537C5.53477 6.06977 5.47027 6.14696 5.43135 6.23748L4.9126 7.46873" }))); const EarthTwoFilledIcon = (props) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 16 16", ...props }, /* @__PURE__ */ React.createElement("g", { id: "theme=filled" }, /* @__PURE__ */ React.createElement("g", { id: "Vector" }, /* @__PURE__ */ React.createElement("path", { fill: "currentColor", d: "M13.6359 10.063C13.8715 9.41972 14 8.72487 14 8C14 5.53096 12.5086 3.41023 10.3776 2.48952L10.5733 3.04661C10.6636 3.23281 10.6944 3.4427 10.6609 3.64766C10.6249 3.86808 10.5167 4.07025 10.3531 4.22235L10.3478 4.22729L8.67069 5.74223C8.61292 5.79645 8.54858 5.84324 8.47918 5.88149L7.70323 6.31047C7.56178 6.38552 7.40484 6.42675 7.24476 6.43105L7.23135 6.43141L5.89613 6.43123L5.89297 6.43226L5.89083 6.43467L5.6062 7.11024L6.01499 7.19812C6.16406 7.22883 6.30402 7.29358 6.42395 7.38734C6.54439 7.48151 6.64133 7.60236 6.70711 7.74035L6.7078 7.74179L6.94051 8.22557L6.94438 8.22938L6.94985 8.23123H7.48036C7.56538 8.10487 7.679 7.99915 7.81304 7.92325C8.00251 7.81596 8.2221 7.77431 8.43766 7.80474L9.86238 7.9976C10.0035 8.01434 10.1391 8.06253 10.2592 8.13863L13.59 10.1844C13.6057 10.1442 13.621 10.1037 13.6359 10.063Z" }), /* @__PURE__ */ React.createElement("path", { fill: "currentColor", d: "M9.18694 2.11739C9.14548 2.10907 9.10386 2.10117 9.0621 2.09371C8.71737 2.03214 8.36244 2 8 2C6.68491 2 5.46864 2.42309 4.47988 3.14058L3.97333 4.96365L3.96143 4.99223L4.64599 6.81375L4.97201 6.03995C5.04937 5.86003 5.17758 5.70661 5.34087 5.59848C5.50417 5.49035 5.69546 5.43223 5.89131 5.43123L5.89385 5.43122L7.22073 5.43123C7.22494 5.4308 7.22906 5.42966 7.23289 5.42785L7.99074 5.00888L7.99605 5.00381L9.67258 3.48957L9.67399 3.48653L9.67332 3.48254L9.65416 3.4473L9.18694 2.11739Z" }), /* @__PURE__ */ React.createElement("path", { fill: "currentColor", d: "M3.0221 4.64921L4.47037 7.88894L5.80712 8.17627L6.04294 8.66675L6.04738 8.67553C6.13075 8.84046 6.25766 8.97943 6.41438 9.07738C6.57109 9.17532 6.75162 9.22856 6.9364 9.23123H7.01817L6.53814 10.3069L6.53759 10.3081C6.45751 10.4863 6.43137 10.6841 6.46241 10.8769C6.49352 11.0703 6.5807 11.2502 6.71314 11.3944L6.71457 11.396L7.88699 12.6619L7.88937 12.6665L7.88985 12.6698L7.60073 13.9869C4.47317 13.7814 2 11.1795 2 8C2 6.86091 2.31742 5.79596 2.86864 4.88878C2.91794 4.80764 2.96911 4.72777 3.0221 4.64921Z" }), /* @__PURE__ */ React.createElement("path", { fill: "currentColor", d: "M8.62881 13.9674C8.6363 13.9667 8.64377 13.9659 8.65125 13.9651C10.5617 13.7589 12.2033 12.6559 13.1467 11.0858L9.73368 8.98943L8.30744 8.79623L8.30688 8.79755L7.45052 10.7163L7.44971 10.7181L8.62626 11.9885C8.7312 12.1038 8.80806 12.2418 8.8509 12.3918C8.89373 12.5417 8.90136 12.6995 8.87319 12.8528L8.87164 12.8613L8.62881 13.9674Z" }), /* @__PURE__ */ React.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M8 14C11.3137 14 14 11.3137 14 8C14 4.68629 11.3137 2 8 2C4.68629 2 2 4.68629 2 8C2 11.3137 4.68629 14 8 14ZM8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1C4.13401 1 1 4.13401 1 8C1 11.866 4.13401 15 8 15Z", clipRule: "evenodd" })))); @@ -1558,4 +1574,4 @@ const FolderCloseIcon = (props) => /* @__PURE__ */ React.createElement("svg", { const FolderCloseFilledIcon = (props) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 16 16", ...props }, /* @__PURE__ */ React.createElement("g", { id: "theme=filled" }, /* @__PURE__ */ React.createElement("path", { id: "Vector", fill: "currentColor", fillRule: "evenodd", d: "M0.5 3.5H6.20711L7.70711 5H14.5V13.5H0.5V3.5ZM6.79289 5.5L5.79289 4.5H1.5V6.5H5.79289L6.79289 5.5Z", clipRule: "evenodd" }))); -export { AddChatFilledIcon, AddChatIcon, AddChatTwoFilledIcon, AddChatTwoIcon, AddOneFilledIcon, AddOneIcon, AdjustHightFilledIcon, AdjustHightIcon, AdjustWidthFilledIcon, AdjustWidthIcon, AlignTxtBothFilledIcon, AlignTxtBothIcon, AlignTxtCenterFilledIcon, AlignTxtCenterIcon, AlignTxtLeftFilledIcon, AlignTxtLeftIcon, AlignTxtRightFilledIcon, AlignTxtRightIcon, AmountDollarFilledIcon, AmountDollarIcon, AmountDownFilledIcon, AmountDownIcon, AmountDownTwoFilledIcon, AmountDownTwoIcon, AmountUpFilledIcon, AmountUpIcon, AmountUpTwoFilledIcon, AmountUpTwoIcon, AmountYuanFilledIcon, AmountYuanIcon, AnnularFilledIcon, AnnularIcon, Anticlockwise90FilledIcon, Anticlockwise90Icon, AppsFilledIcon, AppsIcon, AreaChartFilledIcon, AreaChartIcon, ArrowDownFilledIcon, ArrowDownIcon, ArrowDownRightFilledIcon, ArrowDownRightIcon, ArrowLeftFilledIcon, ArrowLeftIcon, ArrowRightFilledIcon, ArrowRightIcon, ArrowUpFilledIcon, ArrowUpIcon, AttachmentsFilledIcon, AttachmentsIcon, BackSquareFilledIcon, BackSquareIcon, BadgeNewFilledIcon, BadgeNewIcon, BadgePromotionFilledIcon, BadgePromotionIcon, BarCodeFilledIcon, BarCodeIcon, BarFilledIcon, BarIcon, BasketFilledIcon, BasketIcon, BatchAddFilledIcon, BatchAddIcon, BatchCheckFilledIcon, BatchCheckIcon, BbqFilledIcon, BbqIcon, BedFilledIcon, BedIcon, BookFilledIcon, BookIcon, BottomAlignFilledIcon, BottomAlignIcon, BuildingFilledIcon, BuildingIcon, BulbFilledIcon, BulbIcon, CalculatorFilledIcon, CalculatorIcon, CalendarFilledIcon, CalendarIcon, CameraFilledIcon, CameraIcon, CenterHorizontallyFilledIcon, CenterHorizontallyIcon, CheckCorrectFilledIcon, CheckCorrectIcon, CheckDisabledFilledIcon, CheckDisabledIcon, CheckFilledIcon, CheckIcon, CheckStandFilledIcon, CheckStandIcon, CheckboxFilledIcon, CheckboxIcon, ChefFilledIcon, ChefIcon, ChipsFilledIcon, ChipsIcon, CircleAddFilledIcon, CircleAddIcon, CircleArrowDownFilledIcon, CircleArrowDownIcon, CircleArrowLeftFilledIcon, CircleArrowLeftIcon, CircleArrowRightFilledIcon, CircleArrowRightIcon, CircleArrowUpFilledIcon, CircleArrowUpIcon, CircleCloseFilledIcon, CircleCloseIcon, CircleHelpFilledIcon, CircleHelpIcon, CircleInformationFilledIcon, CircleInformationIcon, CircleMoreFilledIcon, CircleMoreIcon, CircleStarFilledIcon, CircleStarIcon, CircleSucceedFilledIcon, CircleSucceedIcon, CircleWarningFilledIcon, CircleWarningIcon, ClearFilledIcon, ClearIcon, CliFilledIcon, CliIcon, Clockwise90FilledIcon, Clockwise90Icon, CloseSmallFilledIcon, CloseSmallIcon, ClothesFilledIcon, ClothesIcon, CloudyFilledIcon, CloudyIcon, CodeFilledIcon, CodeIcon, ColumnFilledIcon, ColumnIcon, ColumnLineFilledIcon, ColumnLineIcon, CommentsFilledIcon, CommentsIcon, CompilingFilledIcon, CompilingIcon, ComputerAcrossFilledIcon, ComputerAcrossIcon, ComputerExclamationFilledIcon, ComputerExclamationIcon, ComputerFilledIcon, ComputerIcon, ConstituteFilledIcon, ConstituteIcon, ConsumeFilledIcon, ConsumeIcon, ContractAcrossFilledIcon, ContractAcrossIcon, ContractExclamationFilledIcon, ContractExclamationIcon, ContractFilledIcon, ContractIcon, ControlFilledIcon, ControlIcon, CopyOneFilledIcon, CopyOneIcon, CopyTwoFilledIcon, CopyTwoIcon, CouponFilledIcon, CouponIcon, CoverageFilledIcon, CoverageIcon, CubeFilledIcon, CubeIcon, DataFilledIcon, DataIcon, DataScreenFilledIcon, DataScreenIcon, DatabaseFilledIcon, DatabaseIcon, DealFilledIcon, DealIcon, DecimalFilledIcon, DecimalIcon, DecorateFilledIcon, DecorateIcon, DeleteFilledIcon, DeleteIcon, DensityLFilledIcon, DensityLIcon, DensityMFilledIcon, DensityMIcon, DensitySFilledIcon, DensitySIcon, DisableFilledIcon, DisableIcon, DistributionFilledIcon, DistributionIcon, DocumentFilledIcon, DocumentIcon, DoubleArrowDownFilledIcon, DoubleArrowDownIcon, DoubleArrowLeftFilledIcon, DoubleArrowLeftIcon, DoubleArrowRightFilledIcon, DoubleArrowRightIcon, DoubleArrowUpFilledIcon, DoubleArrowUpIcon, DownFilledIcon, DownIcon, DownloadFilledIcon, DownloadIcon, DragFilledIcon, DragIcon, EarthFilledIcon, EarthIcon, EarthTwoFilledIcon, EarthTwoIcon, EditFilledIcon, EditIcon, EducationFilledIcon, EducationIcon, EmailSendFilledIcon, EmailSendIcon, EquipmentFilledIcon, EquipmentIcon, ExclamationFilledIcon, ExclamationIcon, ExitFilledIcon, ExitIcon, ExportFilledIcon, ExportIcon, FileAviFilledIcon, FileAviIcon, FileCdrFilledIcon, FileCdrIcon, FileCsvFilledIcon, FileCsvIcon, FileDocFilledIcon, FileDocIcon, FileExportFilledIcon, FileExportIcon, FileImportFilledIcon, FileImportIcon, FileJpgFilledIcon, FileJpgIcon, FileMovFilledIcon, FileMovIcon, FileMovieFilledIcon, FileMovieIcon, FileMp3FilledIcon, FileMp3Icon, FileMp4FilledIcon, FileMp4Icon, FilePdfFilledIcon, FilePdfIcon, FilePngFilledIcon, FilePngIcon, FilePptFilledIcon, FilePptIcon, FileRarFilledIcon, FileRarIcon, FileTxtFilledIcon, FileTxtIcon, FileXlsFilledIcon, FileXlsIcon, FileZipFilledIcon, FileZipIcon, FilterFilledIcon, FilterIcon, FindFilledIcon, FindIcon, FireFilledIcon, FireIcon, FitScreenFilledIcon, FitScreenIcon, FlagFilledIcon, FlagIcon, FolderCloseFilledIcon, FolderCloseIcon, FolderFilesFilledIcon, FolderFilesIcon, FolderFilledIcon, FolderIcon, FolderOpenFilledIcon, FolderOpenIcon, FormatPainterFilledIcon, FormatPainterIcon, FrontSquareFilledIcon, FrontSquareIcon, GalleryFilledIcon, GalleryIcon, GatherFilledIcon, GatherIcon, GiftFilledIcon, GiftIcon, GitBranchFilledIcon, GitBranchIcon, GitCommitFilledIcon, GitCommitIcon, GitDiffFilledIcon, GitDiffIcon, GitForkFilledIcon, GitForkIcon, GitMergeFilledIcon, GitMergeIcon, GitPullFilledIcon, GitPullIcon, GoodsFilledIcon, GoodsIcon, GoodsSearchFilledIcon, GoodsSearchIcon, GotoFilledIcon, GotoIcon, HandShakeFilledIcon, HandShakeIcon, HazeFilledIcon, HazeIcon, HeavyRainFilledIcon, HeavyRainIcon, HeavySnowFilledIcon, HeavySnowIcon, HightLessenFilledIcon, HightLessenIcon, HomeFilledIcon, HomeIcon, HospitalFilledIcon, HospitalIcon, HouseFilledIcon, HouseIcon, IncubatorFilledIcon, IncubatorIcon, InfuseOneFilledIcon, InfuseOneIcon, InfuseTwoFilledIcon, InfuseTwoIcon, IntegralDistributeFilledIcon, IntegralDistributeIcon, IntegralFilledIcon, IntegralIcon, InventoryFilledIcon, InventoryIcon, KeyboardFilledIcon, KeyboardIcon, LabelFilledIcon, LabelIcon, LeafFilledIcon, LeafIcon, LeftAlignFilledIcon, LeftAlignIcon, LeftFilledIcon, LeftIcon, LeftSquareFilledIcon, LeftSquareIcon, LightRainFilledIcon, LightRainIcon, LightSnowFilledIcon, LightSnowIcon, LightningFilledIcon, LightningIcon, LineChartFilledIcon, LineChartIcon, LinecapButtFilledIcon, LinecapButtIcon, LinecapRoundFilledIcon, LinecapRoundIcon, LinecapSquareFilledIcon, LinecapSquareIcon, LinejoinBevelFilledIcon, LinejoinBevelIcon, LinejoinMiterFilledIcon, LinejoinMiterIcon, LinejoinRoundFilledIcon, LinejoinRoundIcon, LinkFilledIcon, LinkIcon, ListFilledIcon, ListIcon, ListTwoFilledIcon, ListTwoIcon, LocationFilledIcon, LocationIcon, LockFilledIcon, LockIcon, MagicFilledIcon, MagicIcon, MailFilledIcon, MailIcon, ManagementFilledIcon, ManagementIcon, ManagementStockoutFilledIcon, ManagementStockoutIcon, MapFilledIcon, MapIcon, MapLocationFilledIcon, MapLocationIcon, MarketingFilledIcon, MarketingIcon, MarketplaceFilledIcon, MarketplaceIcon, MeasureFilledIcon, MeasureIcon, Menu2FilledIcon, Menu2Icon, MenuEndwaysFilledIcon, MenuEndwaysIcon, MenuThwartwiseFilledIcon, MenuThwartwiseIcon, MicrophoneFilledIcon, MicrophoneIcon, MinusFilledIcon, MinusIcon, MobileFilledIcon, MobileIcon, MonitoringFilledIcon, MonitoringIcon, MoonFilledIcon, MoonIcon, MoreFilledIcon, MoreIcon, MotorcycleFilledIcon, MotorcycleIcon, MoveDownFilledIcon, MoveDownIcon, MoveFilledIcon, MoveIcon, MoveUpFilledIcon, MoveUpIcon, MusicFilledIcon, MusicIcon, NumberFilledIcon, NumberIcon, NumberSignFilledIcon, NumberSignIcon, OclockFilledIcon, OclockIcon, OfflineGatewayFilledIcon, OfflineGatewayIcon, OneToOneFilledIcon, OneToOneIcon, OnlineGatewayFilledIcon, OnlineGatewayIcon, OpenNewFilledIcon, OpenNewIcon, OperationFilledIcon, OperationIcon, OrderAbnormalFilledIcon, OrderAbnormalIcon, OrderCloseFilledIcon, OrderCloseIcon, OrderDoneFilledIcon, OrderDoneIcon, OrderEditFilledIcon, OrderEditIcon, OrderFilledIcon, OrderIcon, OrderIntegralFilledIcon, OrderIntegralIcon, OutOfWarehouseFilledIcon, OutOfWarehouseIcon, OvertimeFilledIcon, OvertimeIcon, PackingBoxFilledIcon, PackingBoxIcon, PadFilledIcon, PadIcon, PadTwoFilledIcon, PadTwoIcon, ParkFilledIcon, ParkIcon, PasteFilledIcon, PasteIcon, PathFilledIcon, PathIcon, PenFilledIcon, PenIcon, PercentFilledIcon, PercentIcon, PhoneFilledIcon, PhoneIcon, PickingFilledIcon, PickingGuidanceFilledIcon, PickingGuidanceIcon, PickingIcon, PickingPathFilledIcon, PickingPathIcon, PictureFilledIcon, PictureIcon, PictureOffFilledIcon, PictureOffIcon, PieOneFilledIcon, PieOneIcon, PieTwoFilledIcon, PieTwoIcon, PinFilledIcon, PinIcon, PinPreFilledIcon, PinPreIcon, PlaceOrderFilledIcon, PlaceOrderIcon, PlayFilledIcon, PlayIcon, PointerFilledIcon, PointerIcon, PowerFilledIcon, PowerIcon, PrintFilledIcon, PrintIcon, ProcessModeFilledIcon, ProcessModeIcon, PurseFilledIcon, PurseIcon, PushMgtFilledIcon, PushMgtIcon, PuzzleFilledIcon, PuzzleIcon, QrCodeFilledIcon, QrCodeIcon, QuestionFilledIcon, QuestionIcon, RadarChartFilledIcon, RadarChartIcon, RadioSelectedFilledIcon, RadioSelectedIcon, RadioUnselectedFilledIcon, RadioUnselectedIcon, RailFilledIcon, RailIcon, ReceiptFilledIcon, ReceiptIcon, RefreshDoingFilledIcon, RefreshDoingIcon, RefreshDoneFilledIcon, RefreshDoneIcon, RefreshFilledIcon, RefreshIcon, RemindCloseFilledIcon, RemindCloseIcon, RemindFilledIcon, RemindIcon, ReplenishmentFilledIcon, ReplenishmentIcon, ReportFilledIcon, ReportIcon, RiceFilledIcon, RiceIcon, RightAlignFilledIcon, RightAlignIcon, RightIcon, RightSquareFilledIcon, RightSquareIcon, RocketFilledIcon, RocketIcon, RollbackFilledIcon, RollbackIcon, RotationLeftFilledIcon, RotationLeftIcon, RotationRightFilledIcon, RotationRightIcon, RowHeightLFilledIcon, RowHeightLIcon, RowHeightMFilledIcon, RowHeightMIcon, RowHeightSFilledIcon, RowHeightSIcon, SalesReturnFilledIcon, SalesReturnIcon, SandFilledIcon, SandGlassFilledIcon, SandGlassIcon, SandIcon, SaveAsFilledIcon, SaveAsIcon, SaveFilledIcon, SaveIcon, ScaleFilledIcon, ScaleIcon, ScanFilledIcon, ScanIcon, ScatterDiagramFilledIcon, ScatterDiagramIcon, ScreenFullFilledIcon, ScreenFullIcon, ScreenOffFilledIcon, ScreenOffIcon, SearchFilledIcon, SearchIcon, SendFilledIcon, SendIcon, ServiceFilledIcon, ServiceIcon, SettingFilledIcon, SettingIcon, SettingSearchFilledIcon, SettingSearchIcon, ShareFilledIcon, ShareIcon, ShelfDownFilledIcon, ShelfDownIcon, ShelfFilledIcon, ShelfIcon, ShelfUpFilledIcon, ShelfUpIcon, ShellWindowMaximizeFilledIcon, ShellWindowMaximizeIcon, ShellWindowMinimizeFilledIcon, ShellWindowMinimizeIcon, ShieldFilledIcon, ShieldIcon, ShoppingBagFilledIcon, ShoppingBagIcon, ShoppingCartFilledIcon, ShoppingCartIcon, SmileFilledIcon, SmileIcon, SortAToZFilledIcon, SortAToZIcon, SortFilledIcon, SortFilterFilledIcon, SortFilterIcon, SortIcon, SortZToAFilledIcon, SortZToAIcon, SoupFilledIcon, SoupIcon, StampFilledIcon, StampIcon, StarFilledIcon, StarIcon, StopFilledIcon, StopIcon, StoreFilledIcon, StoreIcon, SubmitFilledIcon, SubmitIcon, SunnyFilledIcon, SunnyIcon, SurfaceFrontFilledIcon, SurfaceFrontIcon, SurfaceLeftFilledIcon, SurfaceLeftIcon, SurfaceRightFilledIcon, SurfaceRightIcon, SurfaceTopFilledIcon, SurfaceTopIcon, SuspendFilledIcon, SuspendIcon, SwerveFilledIcon, SwerveIcon, SwitchFilledIcon, SwitchIcon, TableFilledIcon, TableIcon, TextFilledIcon, TextIcon, ThermoDynamicFilledIcon, ThermoDynamicIcon, ThumbDownFilledIcon, ThumbDownIcon, ThumbUpFilledIcon, ThumbUpIcon, TimeOneFilledIcon, TimeOneIcon, TimeTwoFilledIcon, TimeTwoIcon, TimingShelfDownFilledIcon, TimingShelfDownIcon, ToBottomFilledIcon, ToBottomIcon, ToTopFilledIcon, ToTopIcon, ToggleFilledIcon, ToggleIcon, ToggleWarehouseXFilledIcon, ToggleWarehouseXIcon, ToggleWarehouseYFilledIcon, ToggleWarehouseYIcon, TopAlignFilledIcon, TopAlignIcon, TopFilledIcon, TopIcon, TranslateFilledIcon, TranslateIcon, TreeFilledIcon, TreeIcon, TriangleDownFilledIcon, TriangleDownIcon, TriangleLeftFilledIcon, TriangleLeftIcon, TriangleRightFilledIcon, TriangleRightIcon, TriangleUpFilledIcon, TriangleUpIcon, TriangleWarningFilledIcon, TriangleWarningIcon, UndoFilledIcon, UndoIcon, UnlinkFilledIcon, UnlinkIcon, UnlockFilledIcon, UnlockIcon, UpFilledIcon, UpIcon, UploadingFilledIcon, UploadingIcon, UrgencyFilledIcon, UrgencyIcon, UserAllFilledIcon, UserAllIcon, UserBlackFilledIcon, UserBlackIcon, UserCrowdFilledIcon, UserCrowdIcon, UserFilledIcon, UserIcon, UserLeaveFilledIcon, UserLeaveIcon, UserLikeFilledIcon, UserLikeIcon, UserNewFilledIcon, UserNewIcon, UserPortrayalFilledIcon, UserPortrayalIcon, UserSilenceFilledIcon, UserSilenceIcon, UserWhiteFilledIcon, UserWhiteIcon, VerticalCenterFilledIcon, VerticalCenterIcon, VerticalSplitFilledIcon, VerticalSplitIcon, ViewColumnFilledIcon, ViewColumnIcon, ViewFilledIcon, ViewIcon, ViewOffFilledIcon, ViewOffIcon, VipConsumeFilledIcon, VipConsumeIcon, VipFilledIcon, VipIcon, VolumeDownFilledIcon, VolumeDownIcon, VolumeFilledIcon, VolumeIcon, VolumeMuteFilledIcon, VolumeMuteIcon, VolumeUpFilledIcon, VolumeUpIcon, WarehouseFilledIcon, WarehouseIcon, WarehouseIntoFilledIcon, WarehouseIntoIcon, WarehousePreFilledIcon, WarehousePreIcon, WifiAbnormalFilledIcon, WifiAbnormalIcon, WifiCloseFilledIcon, WifiCloseIcon, WifiFilledIcon, WifiIcon, WordCloudFilledIcon, WordCloudIcon, WorkOrderAbnormalFilledIcon, WorkOrderAbnormalIcon, WorkOrderAppointmentFilledIcon, WorkOrderAppointmentIcon, WorkOrderCheckFilledIcon, WorkOrderCheckIcon, WorkOrderFilledIcon, WorkOrderIcon, WorkOrderInfoFilledIcon, WorkOrderInfoIcon, WorkingOddFilledIcon, WorkingOddIcon, ZoomInFilledIcon, ZoomInIcon, ZoomOutFilledIcon, ZoomOutIcon }; +export { AddChatFilledIcon, AddChatIcon, AddChatTwoFilledIcon, AddChatTwoIcon, AddOneFilledIcon, AddOneIcon, AdjustHightFilledIcon, AdjustHightIcon, AdjustWidthFilledIcon, AdjustWidthIcon, AlignTxtBothFilledIcon, AlignTxtBothIcon, AlignTxtCenterFilledIcon, AlignTxtCenterIcon, AlignTxtLeftFilledIcon, AlignTxtLeftIcon, AlignTxtRightFilledIcon, AlignTxtRightIcon, AmountDollarFilledIcon, AmountDollarIcon, AmountDownFilledIcon, AmountDownIcon, AmountDownTwoFilledIcon, AmountDownTwoIcon, AmountUpFilledIcon, AmountUpIcon, AmountUpTwoFilledIcon, AmountUpTwoIcon, AmountYuanFilledIcon, AmountYuanIcon, AnnularFilledIcon, AnnularIcon, Anticlockwise90FilledIcon, Anticlockwise90Icon, AppsFilledIcon, AppsIcon, AreaChartFilledIcon, AreaChartIcon, ArrowDownFilledIcon, ArrowDownIcon, ArrowDownRightFilledIcon, ArrowDownRightIcon, ArrowLeftFilledIcon, ArrowLeftIcon, ArrowRightFilledIcon, ArrowRightIcon, ArrowUpFilledIcon, ArrowUpIcon, AtFilledIcon, AtIcon, AttachmentsFilledIcon, AttachmentsIcon, BackSquareFilledIcon, BackSquareIcon, BadgeNewFilledIcon, BadgeNewIcon, BadgePromotionFilledIcon, BadgePromotionIcon, BarCodeFilledIcon, BarCodeIcon, BarFilledIcon, BarIcon, BasketFilledIcon, BasketIcon, BatchAddFilledIcon, BatchAddIcon, BatchCheckFilledIcon, BatchCheckIcon, BbqFilledIcon, BbqIcon, BedFilledIcon, BedIcon, BookFilledIcon, BookIcon, BookTwoFilledIcon, BookTwoIcon, BottomAlignFilledIcon, BottomAlignIcon, BuildingFilledIcon, BuildingIcon, BulbFilledIcon, BulbIcon, CalculatorFilledIcon, CalculatorIcon, CalendarFilledIcon, CalendarIcon, CameraFilledIcon, CameraIcon, CenterHorizontallyFilledIcon, CenterHorizontallyIcon, ChatFilledIcon, ChatIcon, CheckCorrectFilledIcon, CheckCorrectIcon, CheckDisabledFilledIcon, CheckDisabledIcon, CheckFilledIcon, CheckIcon, CheckStandFilledIcon, CheckStandIcon, CheckboxFilledIcon, CheckboxIcon, ChefFilledIcon, ChefIcon, ChipsFilledIcon, ChipsIcon, CircleAddFilledIcon, CircleAddIcon, CircleArrowDownFilledIcon, CircleArrowDownIcon, CircleArrowLeftFilledIcon, CircleArrowLeftIcon, CircleArrowRightFilledIcon, CircleArrowRightIcon, CircleArrowUpFilledIcon, CircleArrowUpIcon, CircleCloseFilledIcon, CircleCloseIcon, CircleHelpFilledIcon, CircleHelpIcon, CircleInformationFilledIcon, CircleInformationIcon, CircleMoreFilledIcon, CircleMoreIcon, CircleStarFilledIcon, CircleStarIcon, CircleSucceedFilledIcon, CircleSucceedIcon, CircleWarningFilledIcon, CircleWarningIcon, ClearFilledIcon, ClearIcon, CliFilledIcon, CliIcon, Clockwise90FilledIcon, Clockwise90Icon, CloseSmallFilledIcon, CloseSmallIcon, ClothesFilledIcon, ClothesIcon, CloudyFilledIcon, CloudyIcon, CodeFilledIcon, CodeIcon, ColumnFilledIcon, ColumnIcon, ColumnLineFilledIcon, ColumnLineIcon, CommentsFilledIcon, CommentsIcon, CompilingFilledIcon, CompilingIcon, ComputerAcrossFilledIcon, ComputerAcrossIcon, ComputerExclamationFilledIcon, ComputerExclamationIcon, ComputerFilledIcon, ComputerIcon, ConstituteFilledIcon, ConstituteIcon, ConsumeFilledIcon, ConsumeIcon, ContractAcrossFilledIcon, ContractAcrossIcon, ContractExclamationFilledIcon, ContractExclamationIcon, ContractFilledIcon, ContractIcon, ControlFilledIcon, ControlIcon, CopyOneFilledIcon, CopyOneIcon, CopyTwoFilledIcon, CopyTwoIcon, CouponFilledIcon, CouponIcon, CoverageFilledIcon, CoverageIcon, CubeFilledIcon, CubeIcon, DataFilledIcon, DataIcon, DataScreenFilledIcon, DataScreenIcon, DatabaseFilledIcon, DatabaseIcon, DealFilledIcon, DealIcon, DecimalFilledIcon, DecimalIcon, DecorateFilledIcon, DecorateIcon, DeleteFilledIcon, DeleteIcon, DensityLFilledIcon, DensityLIcon, DensityMFilledIcon, DensityMIcon, DensitySFilledIcon, DensitySIcon, DisableFilledIcon, DisableIcon, DistributionFilledIcon, DistributionIcon, DocumentFilledIcon, DocumentIcon, DoubleArrowDownFilledIcon, DoubleArrowDownIcon, DoubleArrowLeftFilledIcon, DoubleArrowLeftIcon, DoubleArrowRightFilledIcon, DoubleArrowRightIcon, DoubleArrowUpFilledIcon, DoubleArrowUpIcon, DownFilledIcon, DownIcon, DownloadFilledIcon, DownloadIcon, DragFilledIcon, DragIcon, EarthFilledIcon, EarthIcon, EarthTwoFilledIcon, EarthTwoIcon, EditFilledIcon, EditIcon, EducationFilledIcon, EducationIcon, EmailSendFilledIcon, EmailSendIcon, EquipmentFilledIcon, EquipmentIcon, ExclamationFilledIcon, ExclamationIcon, ExitFilledIcon, ExitIcon, ExportFilledIcon, ExportIcon, FileAviFilledIcon, FileAviIcon, FileCdrFilledIcon, FileCdrIcon, FileCsvFilledIcon, FileCsvIcon, FileDocFilledIcon, FileDocIcon, FileExportFilledIcon, FileExportIcon, FileImportFilledIcon, FileImportIcon, FileJpgFilledIcon, FileJpgIcon, FileMovFilledIcon, FileMovIcon, FileMovieFilledIcon, FileMovieIcon, FileMp3FilledIcon, FileMp3Icon, FileMp4FilledIcon, FileMp4Icon, FilePdfFilledIcon, FilePdfIcon, FilePngFilledIcon, FilePngIcon, FilePptFilledIcon, FilePptIcon, FileRarFilledIcon, FileRarIcon, FileTxtFilledIcon, FileTxtIcon, FileXlsFilledIcon, FileXlsIcon, FileZipFilledIcon, FileZipIcon, FilterFilledIcon, FilterIcon, FindFilledIcon, FindIcon, FireFilledIcon, FireIcon, FitScreenFilledIcon, FitScreenIcon, FlagFilledIcon, FlagIcon, FolderCloseFilledIcon, FolderCloseIcon, FolderFilesFilledIcon, FolderFilesIcon, FolderFilledIcon, FolderIcon, FolderOpenFilledIcon, FolderOpenIcon, FormatPainterFilledIcon, FormatPainterIcon, FrontSquareFilledIcon, FrontSquareIcon, GalleryFilledIcon, GalleryIcon, GatherFilledIcon, GatherIcon, GiftFilledIcon, GiftIcon, GitBranchFilledIcon, GitBranchIcon, GitCommitFilledIcon, GitCommitIcon, GitDiffFilledIcon, GitDiffIcon, GitForkFilledIcon, GitForkIcon, GitMergeFilledIcon, GitMergeIcon, GitPullFilledIcon, GitPullIcon, GoodsFilledIcon, GoodsIcon, GoodsSearchFilledIcon, GoodsSearchIcon, GotoFilledIcon, GotoIcon, HandShakeFilledIcon, HandShakeIcon, HazeFilledIcon, HazeIcon, HeavyRainFilledIcon, HeavyRainIcon, HeavySnowFilledIcon, HeavySnowIcon, HightLessenFilledIcon, HightLessenIcon, HomeFilledIcon, HomeIcon, HospitalFilledIcon, HospitalIcon, HouseFilledIcon, HouseIcon, IncubatorFilledIcon, IncubatorIcon, InfuseOneFilledIcon, InfuseOneIcon, InfuseTwoFilledIcon, InfuseTwoIcon, IntegralDistributeFilledIcon, IntegralDistributeIcon, IntegralFilledIcon, IntegralIcon, InventoryFilledIcon, InventoryIcon, KeyboardFilledIcon, KeyboardIcon, LabelFilledIcon, LabelIcon, LeafFilledIcon, LeafIcon, LeftAlignFilledIcon, LeftAlignIcon, LeftFilledIcon, LeftIcon, LeftSquareFilledIcon, LeftSquareIcon, LightRainFilledIcon, LightRainIcon, LightSnowFilledIcon, LightSnowIcon, LightningFilledIcon, LightningIcon, LineChartFilledIcon, LineChartIcon, LinecapButtFilledIcon, LinecapButtIcon, LinecapRoundFilledIcon, LinecapRoundIcon, LinecapSquareFilledIcon, LinecapSquareIcon, LinejoinBevelFilledIcon, LinejoinBevelIcon, LinejoinMiterFilledIcon, LinejoinMiterIcon, LinejoinRoundFilledIcon, LinejoinRoundIcon, LinkFilledIcon, LinkIcon, ListFilledIcon, ListIcon, ListTwoFilledIcon, ListTwoIcon, LocationFilledIcon, LocationIcon, LockFilledIcon, LockIcon, MagicFilledIcon, MagicIcon, MailFilledIcon, MailIcon, ManagementFilledIcon, ManagementIcon, ManagementStockoutFilledIcon, ManagementStockoutIcon, MapFilledIcon, MapIcon, MapLocationFilledIcon, MapLocationIcon, MarketingFilledIcon, MarketingIcon, MarketplaceFilledIcon, MarketplaceIcon, MeasureFilledIcon, MeasureIcon, Menu2FilledIcon, Menu2Icon, MenuEndwaysFilledIcon, MenuEndwaysIcon, MenuThwartwiseFilledIcon, MenuThwartwiseIcon, MicrophoneFilledIcon, MicrophoneIcon, MinusFilledIcon, MinusIcon, MobileFilledIcon, MobileIcon, MonitoringFilledIcon, MonitoringIcon, MoonFilledIcon, MoonIcon, MoreFilledIcon, MoreIcon, MotorcycleFilledIcon, MotorcycleIcon, MoveDownFilledIcon, MoveDownIcon, MoveFilledIcon, MoveIcon, MoveUpFilledIcon, MoveUpIcon, MusicFilledIcon, MusicIcon, NumberFilledIcon, NumberIcon, NumberSignFilledIcon, NumberSignIcon, OclockFilledIcon, OclockIcon, OfflineGatewayFilledIcon, OfflineGatewayIcon, OneToOneFilledIcon, OneToOneIcon, OnlineGatewayFilledIcon, OnlineGatewayIcon, OpenNewFilledIcon, OpenNewIcon, OperationFilledIcon, OperationIcon, OrderAbnormalFilledIcon, OrderAbnormalIcon, OrderCloseFilledIcon, OrderCloseIcon, OrderDoneFilledIcon, OrderDoneIcon, OrderEditFilledIcon, OrderEditIcon, OrderFilledIcon, OrderIcon, OrderIntegralFilledIcon, OrderIntegralIcon, OutOfWarehouseFilledIcon, OutOfWarehouseIcon, OvertimeFilledIcon, OvertimeIcon, PackingBoxFilledIcon, PackingBoxIcon, PadFilledIcon, PadIcon, PadTwoFilledIcon, PadTwoIcon, ParkFilledIcon, ParkIcon, PasteFilledIcon, PasteIcon, PathFilledIcon, PathIcon, PenFilledIcon, PenIcon, PercentFilledIcon, PercentIcon, PhoneFilledIcon, PhoneIcon, PickingFilledIcon, PickingGuidanceFilledIcon, PickingGuidanceIcon, PickingIcon, PickingPathFilledIcon, PickingPathIcon, PictureFilledIcon, PictureIcon, PictureOffFilledIcon, PictureOffIcon, PieOneFilledIcon, PieOneIcon, PieTwoFilledIcon, PieTwoIcon, PinFilledIcon, PinIcon, PinPreFilledIcon, PinPreIcon, PlaceOrderFilledIcon, PlaceOrderIcon, PlayFilledIcon, PlayIcon, PointerFilledIcon, PointerIcon, PowerFilledIcon, PowerIcon, PrintFilledIcon, PrintIcon, ProcessModeFilledIcon, ProcessModeIcon, PurseFilledIcon, PurseIcon, PushMgtFilledIcon, PushMgtIcon, PuzzleFilledIcon, PuzzleIcon, QrCodeFilledIcon, QrCodeIcon, QuestionFilledIcon, QuestionIcon, RadarChartFilledIcon, RadarChartIcon, RadioSelectedFilledIcon, RadioSelectedIcon, RadioUnselectedFilledIcon, RadioUnselectedIcon, RailFilledIcon, RailIcon, ReceiptFilledIcon, ReceiptIcon, RefreshDoingFilledIcon, RefreshDoingIcon, RefreshDoneFilledIcon, RefreshDoneIcon, RefreshFilledIcon, RefreshIcon, RemindCloseFilledIcon, RemindCloseIcon, RemindFilledIcon, RemindIcon, ReplenishmentFilledIcon, ReplenishmentIcon, ReportFilledIcon, ReportIcon, RiceFilledIcon, RiceIcon, RightAlignFilledIcon, RightAlignIcon, RightIcon, RightSquareFilledIcon, RightSquareIcon, RocketFilledIcon, RocketIcon, RollbackFilledIcon, RollbackIcon, RotationLeftFilledIcon, RotationLeftIcon, RotationRightFilledIcon, RotationRightIcon, RowHeightLFilledIcon, RowHeightLIcon, RowHeightMFilledIcon, RowHeightMIcon, RowHeightSFilledIcon, RowHeightSIcon, SalesReturnFilledIcon, SalesReturnIcon, SandFilledIcon, SandGlassFilledIcon, SandGlassIcon, SandIcon, SaveAsFilledIcon, SaveAsIcon, SaveFilledIcon, SaveIcon, ScaleFilledIcon, ScaleIcon, ScanFilledIcon, ScanIcon, ScatterDiagramFilledIcon, ScatterDiagramIcon, ScreenFullFilledIcon, ScreenFullIcon, ScreenOffFilledIcon, ScreenOffIcon, SearchFilledIcon, SearchIcon, SendFilledIcon, SendIcon, ServiceFilledIcon, ServiceIcon, SettingFilledIcon, SettingIcon, SettingSearchFilledIcon, SettingSearchIcon, ShareFilledIcon, ShareIcon, ShelfDownFilledIcon, ShelfDownIcon, ShelfFilledIcon, ShelfIcon, ShelfUpFilledIcon, ShelfUpIcon, ShellWindowMaximizeFilledIcon, ShellWindowMaximizeIcon, ShellWindowMinimizeFilledIcon, ShellWindowMinimizeIcon, ShieldFilledIcon, ShieldIcon, ShoppingBagFilledIcon, ShoppingBagIcon, ShoppingCartFilledIcon, ShoppingCartIcon, SignOutFilledIcon, SignOutIcon, SmileFilledIcon, SmileIcon, SortAToZFilledIcon, SortAToZIcon, SortFilledIcon, SortFilterFilledIcon, SortFilterIcon, SortIcon, SortZToAFilledIcon, SortZToAIcon, SoupFilledIcon, SoupIcon, StampFilledIcon, StampIcon, StarFilledIcon, StarIcon, StopFilledIcon, StopIcon, StoreFilledIcon, StoreIcon, SubmitFilledIcon, SubmitIcon, SunnyFilledIcon, SunnyIcon, SurfaceFrontFilledIcon, SurfaceFrontIcon, SurfaceLeftFilledIcon, SurfaceLeftIcon, SurfaceRightFilledIcon, SurfaceRightIcon, SurfaceTopFilledIcon, SurfaceTopIcon, SuspendFilledIcon, SuspendIcon, SwerveFilledIcon, SwerveIcon, SwitchFilledIcon, SwitchIcon, TableFilledIcon, TableIcon, TextFilledIcon, TextIcon, ThermoDynamicFilledIcon, ThermoDynamicIcon, ThumbDownFilledIcon, ThumbDownIcon, ThumbUpFilledIcon, ThumbUpIcon, TimeOneFilledIcon, TimeOneIcon, TimeTwoFilledIcon, TimeTwoIcon, TimingShelfDownFilledIcon, TimingShelfDownIcon, ToBottomFilledIcon, ToBottomIcon, ToTopFilledIcon, ToTopIcon, ToggleFilledIcon, ToggleIcon, ToggleWarehouseXFilledIcon, ToggleWarehouseXIcon, ToggleWarehouseYFilledIcon, ToggleWarehouseYIcon, TopAlignFilledIcon, TopAlignIcon, TopFilledIcon, TopIcon, TranslateFilledIcon, TranslateIcon, TreeFilledIcon, TreeIcon, TriangleDownFilledIcon, TriangleDownIcon, TriangleLeftFilledIcon, TriangleLeftIcon, TriangleRightFilledIcon, TriangleRightIcon, TriangleUpFilledIcon, TriangleUpIcon, TriangleWarningFilledIcon, TriangleWarningIcon, UndoFilledIcon, UndoIcon, UnlinkFilledIcon, UnlinkIcon, UnlockFilledIcon, UnlockIcon, UpFilledIcon, UpIcon, UploadingFilledIcon, UploadingIcon, UrgencyFilledIcon, UrgencyIcon, UserAllFilledIcon, UserAllIcon, UserBlackFilledIcon, UserBlackIcon, UserCrowdFilledIcon, UserCrowdIcon, UserFilledIcon, UserIcon, UserLeaveFilledIcon, UserLeaveIcon, UserLikeFilledIcon, UserLikeIcon, UserNewFilledIcon, UserNewIcon, UserPortrayalFilledIcon, UserPortrayalIcon, UserSilenceFilledIcon, UserSilenceIcon, UserWhiteFilledIcon, UserWhiteIcon, VerticalCenterFilledIcon, VerticalCenterIcon, VerticalSplitFilledIcon, VerticalSplitIcon, ViewColumnFilledIcon, ViewColumnIcon, ViewFilledIcon, ViewIcon, ViewOffFilledIcon, ViewOffIcon, VipConsumeFilledIcon, VipConsumeIcon, VipFilledIcon, VipIcon, VolumeDownFilledIcon, VolumeDownIcon, VolumeFilledIcon, VolumeIcon, VolumeMuteFilledIcon, VolumeMuteIcon, VolumeUpFilledIcon, VolumeUpIcon, WarehouseFilledIcon, WarehouseIcon, WarehouseIntoFilledIcon, WarehouseIntoIcon, WarehousePreFilledIcon, WarehousePreIcon, WifiAbnormalFilledIcon, WifiAbnormalIcon, WifiCloseFilledIcon, WifiCloseIcon, WifiFilledIcon, WifiIcon, WordCloudFilledIcon, WordCloudIcon, WorkOrderAbnormalFilledIcon, WorkOrderAbnormalIcon, WorkOrderAppointmentFilledIcon, WorkOrderAppointmentIcon, WorkOrderCheckFilledIcon, WorkOrderCheckIcon, WorkOrderFilledIcon, WorkOrderIcon, WorkOrderInfoFilledIcon, WorkOrderInfoIcon, WorkingOddFilledIcon, WorkingOddIcon, ZoomInFilledIcon, ZoomInIcon, ZoomOutFilledIcon, ZoomOutIcon }; diff --git a/dist/index.d.ts b/dist/index.d.ts index 28f7123..4a3d5a7 100644 --- a/dist/index.d.ts +++ b/dist/index.d.ts @@ -379,6 +379,8 @@ export { default as LinejoinRoundIcon } from './LinejoinRoundIcon.tsx'; export { default as LinejoinRoundFilledIcon } from './LinejoinRoundFilledIcon.tsx'; export { default as ExitIcon } from './ExitIcon.tsx'; export { default as ExitFilledIcon } from './ExitFilledIcon.tsx'; +export { default as SignOutIcon } from './SignOutIcon.tsx'; +export { default as SignOutFilledIcon } from './SignOutFilledIcon.tsx'; export { default as LightningIcon } from './LightningIcon.tsx'; export { default as LightningFilledIcon } from './LightningFilledIcon.tsx'; export { default as PieTwoIcon } from './PieTwoIcon.tsx'; @@ -625,6 +627,12 @@ export { default as NumberSignIcon } from './NumberSignIcon.tsx'; export { default as NumberSignFilledIcon } from './NumberSignFilledIcon.tsx'; export { default as BulbIcon } from './BulbIcon.tsx'; export { default as BulbFilledIcon } from './BulbFilledIcon.tsx'; +export { default as AtIcon } from './AtIcon.tsx'; +export { default as AtFilledIcon } from './AtFilledIcon.tsx'; +export { default as ChatIcon } from './ChatIcon.tsx'; +export { default as ChatFilledIcon } from './ChatFilledIcon.tsx'; +export { default as BookTwoIcon } from './BookTwoIcon.tsx'; +export { default as BookTwoFilledIcon } from './BookTwoFilledIcon.tsx'; export { default as EarthTwoIcon } from './EarthTwoIcon.tsx'; export { default as EarthTwoFilledIcon } from './EarthTwoFilledIcon.tsx'; export { default as ConsumeIcon } from './ConsumeIcon.tsx';