@shulex/icons 1.0.1 → 1.0.5
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/ContactOutlined.d.ts +4 -0
- package/dist/icons/ContactOutlined.mjs +9 -0
- package/dist/icons/DeployOutlined.d.ts +4 -0
- package/dist/icons/DeployOutlined.mjs +9 -0
- package/dist/icons/DiscoverOutlined.d.ts +4 -0
- package/dist/icons/DiscoverOutlined.mjs +9 -0
- package/dist/icons/KnowledgeOutlined.d.ts +4 -0
- package/dist/icons/KnowledgeOutlined.mjs +9 -0
- package/dist/icons/MenuTriggeOutlined.d.ts +4 -0
- package/dist/icons/MenuTriggeOutlined.mjs +9 -0
- package/dist/icons/SolveaLogoFilled.d.ts +4 -0
- package/dist/icons/SolveaLogoFilled.mjs +9 -0
- package/dist/icons/SolveaTextFilled.d.ts +4 -0
- package/dist/icons/SolveaTextFilled.mjs +9 -0
- package/dist/icons/index.d.ts +7 -0
- package/dist/icons/index.mjs +7 -0
- package/package.json +1 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import ShulexIcon from "../components/ShulexIcon.mjs";
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
const InnerSvg = (props) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 16 16", ...props }, /* @__PURE__ */ React.createElement("path", { d: "M12.62 9.32a.67.67 0 0 1 .9-.29c.62.32 1.13.83 1.45 1.46q.29.59.32 1.3.05.71.04 1.81v.4A.67.67 0 0 1 14 14v-.4c0-.76 0-1.29-.03-1.7-.04-.4-.1-.63-.19-.8a2 2 0 0 0-.87-.88.67.67 0 0 1-.3-.9" }), /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", d: "M7.07 8.67q1.09 0 1.8.03.72.04 1.31.33.96.5 1.46 1.46.28.59.32 1.3.05.71.04 1.81v.4c0 .37-.3.67-.67.67h-10A.67.67 0 0 1 .67 14v-.4q-.01-1.1.04-1.8.03-.74.32-1.31.5-.96 1.46-1.46.59-.28 1.3-.33t1.81-.03zM5.6 10c-.76 0-1.29 0-1.7.03-.4.04-.63.1-.8.19a2 2 0 0 0-.88.87c-.1.18-.15.4-.19.81Q2 12.43 2 13.33h8.67q.01-.9-.04-1.43c-.03-.4-.1-.63-.18-.8a2 2 0 0 0-.88-.88c-.17-.1-.4-.15-.8-.19a23 23 0 0 0-1.7-.03zM6.33 1.33a3 3 0 1 1 0 6 3 3 0 0 1 0-6m0 1.34a1.67 1.67 0 1 0 0 3.33 1.67 1.67 0 0 0 0-3.33", clipRule: "evenodd" }), /* @__PURE__ */ React.createElement("path", { d: "M10.3 1.99c.19-.32.6-.42.91-.23a3 3 0 0 1 0 5.14.67.67 0 0 1-.68-1.14 1.67 1.67 0 0 0 0-2.86.67.67 0 0 1-.23-.91" }));
|
|
4
|
+
const ContactOutlined = (props, ref) => /* @__PURE__ */ React.createElement(ShulexIcon, { ...props, ref, Icon: InnerSvg, colored: false });
|
|
5
|
+
const RefIcon = React.forwardRef(ContactOutlined);
|
|
6
|
+
if (process.env.NODE_ENV !== "production") {
|
|
7
|
+
RefIcon.displayName = "ContactOutlined";
|
|
8
|
+
}
|
|
9
|
+
export default RefIcon;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import ShulexIcon from "../components/ShulexIcon.mjs";
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
const InnerSvg = (props) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 16 16", ...props }, /* @__PURE__ */ React.createElement("path", { d: "M8 5.67c.37 0 .66.3.66.66v3.73l1.54-1.53a.67.67 0 1 1 .94.94l-2.67 2.67a.7.7 0 0 1-.43.2H8a.7.7 0 0 1-.5-.23L4.86 9.47a.67.67 0 1 1 .94-.94l1.53 1.52V6.33c0-.36.3-.66.67-.66" }), /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", d: "M12.19 1q.27.05.45.26l1.69 2.18.01.02q.31.37.33.87v9c0 .92-.75 1.67-1.67 1.67H3c-.92 0-1.67-.75-1.67-1.67v-9a1.3 1.3 0 0 1 .34-.89l1.7-2.18.04-.06q.2-.2.48-.2h8.3M2.67 13.33c0 .19.15.34.33.34h10c.18 0 .33-.15.33-.34v-9H2.67zM3.7 3h8.6l-.52-.67H4.22z", clipRule: "evenodd" }));
|
|
4
|
+
const DeployOutlined = (props, ref) => /* @__PURE__ */ React.createElement(ShulexIcon, { ...props, ref, Icon: InnerSvg, colored: false });
|
|
5
|
+
const RefIcon = React.forwardRef(DeployOutlined);
|
|
6
|
+
if (process.env.NODE_ENV !== "production") {
|
|
7
|
+
RefIcon.displayName = "DeployOutlined";
|
|
8
|
+
}
|
|
9
|
+
export default RefIcon;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import ShulexIcon from "../components/ShulexIcon.mjs";
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
const InnerSvg = (props) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 16 16", ...props }, /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", d: "M12.87.8a1 1 0 0 1 1.21.76l1.13 4.93a1 1 0 0 1-.85 1.22l-1.65.2a1 1 0 0 1-1-.5l-1.92.37a2 2 0 0 1-.3 2.23l2.34 4.34a.67.67 0 0 1-1.17.63L8.3 10.64a2 2 0 0 1-.67 0L5.16 15A.67.67 0 1 1 4 14.34l2.49-4.37A2 2 0 0 1 6 8.51l-1.57.31a1 1 0 0 1-1-.4l-1 .18a1 1 0 0 1-1.16-.77l-.2-.88a1 1 0 0 1 .71-1.18l.98-.27a1 1 0 0 1 .64-.67l7-2.34a1 1 0 0 1 .66-1.02l1.7-.63zM4.14 6l.14.58.21.87 6.68-1.3-.63-2.3zm-1.69.97.06.26.53-.1-.08-.3zm9.36-4.36 1.02 3.95 1-.13-.96-4.2z", clipRule: "evenodd" }));
|
|
4
|
+
const DiscoverOutlined = (props, ref) => /* @__PURE__ */ React.createElement(ShulexIcon, { ...props, ref, Icon: InnerSvg, colored: false });
|
|
5
|
+
const RefIcon = React.forwardRef(DiscoverOutlined);
|
|
6
|
+
if (process.env.NODE_ENV !== "production") {
|
|
7
|
+
RefIcon.displayName = "DiscoverOutlined";
|
|
8
|
+
}
|
|
9
|
+
export default RefIcon;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import ShulexIcon from "../components/ShulexIcon.mjs";
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
const InnerSvg = (props) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 16 16", ...props }, /* @__PURE__ */ React.createElement("path", { d: "M10 4a.67.67 0 1 1 0 1.33H6A.67.67 0 0 1 6 4z" }), /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", d: "M13.33 1.33c.37 0 .67.3.67.67v9.33c0 .37-.3.67-.67.67H4a.67.67 0 0 0-.67.67c0 .36.3.66.67.66h9.33a.67.67 0 0 1 0 1.34H4a2 2 0 0 1-2-2V3.33c0-1.1.9-2 2-2zM4 2.67c-.37 0-.67.3-.67.66v7.45a2 2 0 0 1 .5-.1l.17-.01h8.67v-8z", clipRule: "evenodd" }));
|
|
4
|
+
const KnowledgeOutlined = (props, ref) => /* @__PURE__ */ React.createElement(ShulexIcon, { ...props, ref, Icon: InnerSvg, colored: false });
|
|
5
|
+
const RefIcon = React.forwardRef(KnowledgeOutlined);
|
|
6
|
+
if (process.env.NODE_ENV !== "production") {
|
|
7
|
+
RefIcon.displayName = "KnowledgeOutlined";
|
|
8
|
+
}
|
|
9
|
+
export default RefIcon;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import ShulexIcon from "../components/ShulexIcon.mjs";
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
const InnerSvg = (props) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 16 16", ...props }, /* @__PURE__ */ React.createElement("path", { d: "M4.67 4.67c.36 0 .66.3.66.66v5.34a.67.67 0 1 1-1.33 0V5.33c0-.36.3-.66.67-.66" }), /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", d: "M12.67 1.67c1.47 0 2.66 1.2 2.66 2.66v7.34c0 1.47-1.2 2.66-2.66 2.66H3.33a2.67 2.67 0 0 1-2.66-2.66V4.33c0-1.47 1.2-2.66 2.66-2.66zM3.33 3C2.6 3 2 3.6 2 4.33v7.34C2 12.4 2.6 13 3.33 13h9.34c.73 0 1.33-.6 1.33-1.33V4.33C14 3.6 13.4 3 12.67 3z", clipRule: "evenodd" }));
|
|
4
|
+
const MenuTriggeOutlined = (props, ref) => /* @__PURE__ */ React.createElement(ShulexIcon, { ...props, ref, Icon: InnerSvg, colored: false });
|
|
5
|
+
const RefIcon = React.forwardRef(MenuTriggeOutlined);
|
|
6
|
+
if (process.env.NODE_ENV !== "production") {
|
|
7
|
+
RefIcon.displayName = "MenuTriggeOutlined";
|
|
8
|
+
}
|
|
9
|
+
export default RefIcon;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import ShulexIcon from "../components/ShulexIcon.mjs";
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
const InnerSvg = (props) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 24 24", ...props }, /* @__PURE__ */ React.createElement("path", { d: "M9.57 1.8c1.33-3.15 6.07-1.88 5.65 1.52l-.2 1.65a2.96 2.96 0 0 0 2.68 3.3l1.65.15c3.41.3 3.67 5.2.3 5.84l-1.62.32a2.96 2.96 0 0 0-2.32 3.57l.37 1.61c.78 3.34-3.8 5.1-5.46 2.1l-.8-1.45q-.45-.77-1.18-1.16a8.83 8.83 0 0 0-.47-14.88q.49-.41.75-1.04zM5.1 8.58a3.1 3.1 0 1 1 0 6.2 3.1 3.1 0 0 1 0-6.2" }));
|
|
4
|
+
const SolveaLogoFilled = (props, ref) => /* @__PURE__ */ React.createElement(ShulexIcon, { ...props, ref, Icon: InnerSvg, colored: false });
|
|
5
|
+
const RefIcon = React.forwardRef(SolveaLogoFilled);
|
|
6
|
+
if (process.env.NODE_ENV !== "production") {
|
|
7
|
+
RefIcon.displayName = "SolveaLogoFilled";
|
|
8
|
+
}
|
|
9
|
+
export default RefIcon;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import ShulexIcon from "../components/ShulexIcon.mjs";
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
const InnerSvg = (props) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 66 24", ...props }, /* @__PURE__ */ React.createElement("path", { d: "M4.83 7.44a10 10 0 0 1 2.45.3q.6.14 1.1.36.53.23.93.55l-.9 1.88q-.3-.24-.73-.4A8.8 8.8 0 0 0 3.9 9.7q-.4.03-.69.13a1 1 0 0 0-.45.26q-.15.15-.17.34 0 .17.11.34.13.15.36.27.46.2 1.18.34a103 103 0 0 1 3.03.6q.76.17 1.23.48.78.46 1.1 1.2a2.8 2.8 0 0 1-.34 2.9q-.47.65-1.33.95-.62.23-1.46.36a11 11 0 0 1-4.4-.2q-.6-.16-1.15-.43A4 4 0 0 1 0 16.6l.93-1.95q.32.28.81.5.52.18 1.1.33.6.14 1.22.21a13 13 0 0 0 2.16 0q.43-.06.7-.19.5-.26.5-.53 0-.29-.39-.5-.44-.28-1.2-.42l-1.62-.3q-.86-.15-1.67-.37a4 4 0 0 1-1.33-.62q-.6-.47-.87-1.17a3 3 0 0 1-.19-1.44q.08-.72.5-1.33.43-.62 1.19-.9.6-.23 1.36-.35a10 10 0 0 1 1.63-.13" }), /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", d: "M16.29 7.46q1.18 0 2.14.38a4.8 4.8 0 0 1 2.77 2.74q.38.97.38 2.16t-.38 2.16a5 5 0 0 1-1.08 1.66q-.7.68-1.7 1.06-.96.38-2.13.38-1.2 0-2.17-.38-.96-.37-1.66-1.06a5 5 0 0 1-1.07-1.66 6 6 0 0 1-.37-2.16q0-1.2.38-2.16.37-.96 1.06-1.66a5 5 0 0 1 1.66-1.08 6 6 0 0 1 2.17-.38m0 2.25q-.65 0-1.18.23a2.6 2.6 0 0 0-1.46 1.6q-.2.55-.2 1.2a3.3 3.3 0 0 0 .77 2.16q.38.4.9.64t1.17.23q.64 0 1.15-.23a2.7 2.7 0 0 0 1.46-1.6q.21-.55.21-1.2a3.3 3.3 0 0 0-.78-2.16q-.36-.42-.89-.64a3 3 0 0 0-1.15-.23M44.24 7.46a5.8 5.8 0 0 1 3.45 1.12q.69.53 1.12 1.28a5 5 0 0 1 .72 2.65v.95h-8.02a3 3 0 0 0 1.03 1.6q.37.3.85.5.48.17 1 .17 1.07 0 1.73-.38.68-.38 1.12-.98l1.99 1.11a4.4 4.4 0 0 1-1.94 1.86 6 6 0 0 1-2.86.66 6 6 0 0 1-2.2-.38 5 5 0 0 1-1.74-1.08 5.1 5.1 0 0 1-1.54-3.82q0-1.18.38-2.14.39-.97 1.08-1.66a5 5 0 0 1 1.67-1.08 6 6 0 0 1 2.16-.38m-.03 2.27q-.95 0-1.64.53-.66.53-.94 1.3h5.34a3 3 0 0 0-.96-1.3 2.8 2.8 0 0 0-1.8-.53M55.49 7.46a4.7 4.7 0 0 1 3.3 1.27V7.67h2.46v10.12h-2.08l-.38-1.08a4.6 4.6 0 0 1-3.3 1.29 4.5 4.5 0 0 1-3.34-1.48 5.4 5.4 0 0 1-1.46-3.8q0-1.18.4-2.14a5.1 5.1 0 0 1 2.6-2.72 4 4 0 0 1 1.8-.4m.5 2.27q-.66 0-1.18.23-.52.22-.9.64a3 3 0 0 0-.75 2.12q0 .64.19 1.2.2.54.56.96a2.8 2.8 0 0 0 2.07.85 2.8 2.8 0 0 0 2.03-.85q.38-.42.57-.97a3.3 3.3 0 0 0 0-2.36 3 3 0 0 0-.57-.95q-.36-.43-.9-.64a3 3 0 0 0-1.13-.23", clipRule: "evenodd" }), /* @__PURE__ */ React.createElement("path", { d: "M25.75 17.8h-2.46V3.6h2.46zM32.92 15.94l3.2-8.27h2.45l-3.93 10.12h-3.66l-3.9-10.12h2.65zM64.77 15.33q.54 0 .89.34t.34.9-.34.88a1.2 1.2 0 0 1-.9.34 1.2 1.2 0 0 1-.88-.34 1.2 1.2 0 0 1-.34-.89q-.01-.54.34-.89.33-.34.89-.34" }));
|
|
4
|
+
const SolveaTextFilled = (props, ref) => /* @__PURE__ */ React.createElement(ShulexIcon, { ...props, ref, Icon: InnerSvg, colored: false });
|
|
5
|
+
const RefIcon = React.forwardRef(SolveaTextFilled);
|
|
6
|
+
if (process.env.NODE_ENV !== "production") {
|
|
7
|
+
RefIcon.displayName = "SolveaTextFilled";
|
|
8
|
+
}
|
|
9
|
+
export default RefIcon;
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -46,14 +46,17 @@ export { default as CloseOutlined } from './CloseOutlined';
|
|
|
46
46
|
export { default as ColorsOutlined } from './ColorsOutlined';
|
|
47
47
|
export { default as CommentOutlined } from './CommentOutlined';
|
|
48
48
|
export { default as ConnectOutlined } from './ConnectOutlined';
|
|
49
|
+
export { default as ContactOutlined } from './ContactOutlined';
|
|
49
50
|
export { default as ConversationCloseOutlined } from './ConversationCloseOutlined';
|
|
50
51
|
export { default as ConversationMessageOutlined } from './ConversationMessageOutlined';
|
|
51
52
|
export { default as CopyOutlined } from './CopyOutlined';
|
|
52
53
|
export { default as DeleteFilled } from './DeleteFilled';
|
|
53
54
|
export { default as DeleteOutlined } from './DeleteOutlined';
|
|
55
|
+
export { default as DeployOutlined } from './DeployOutlined';
|
|
54
56
|
export { default as DesktopOutlined } from './DesktopOutlined';
|
|
55
57
|
export { default as DiamondOutlined } from './DiamondOutlined';
|
|
56
58
|
export { default as DingTalkLogoColored } from './DingTalkLogoColored';
|
|
59
|
+
export { default as DiscoverOutlined } from './DiscoverOutlined';
|
|
57
60
|
export { default as DiversityOutlined } from './DiversityOutlined';
|
|
58
61
|
export { default as DocumentFilled } from './DocumentFilled';
|
|
59
62
|
export { default as DocumentFlashTwoOutlined } from './DocumentFlashTwoOutlined';
|
|
@@ -125,6 +128,7 @@ export { default as IntegrationFilled } from './IntegrationFilled';
|
|
|
125
128
|
export { default as IntercomLogoColored } from './IntercomLogoColored';
|
|
126
129
|
export { default as ItalicOutlined } from './ItalicOutlined';
|
|
127
130
|
export { default as JijiaLogoColored } from './JijiaLogoColored';
|
|
131
|
+
export { default as KnowledgeOutlined } from './KnowledgeOutlined';
|
|
128
132
|
export { default as LanguageOutlined } from './LanguageOutlined';
|
|
129
133
|
export { default as LayoutFilled } from './LayoutFilled';
|
|
130
134
|
export { default as LeftOutlined } from './LeftOutlined';
|
|
@@ -149,6 +153,7 @@ export { default as MenuLeftOutlined } from './MenuLeftOutlined';
|
|
|
149
153
|
export { default as MenuOutlined } from './MenuOutlined';
|
|
150
154
|
export { default as MenuRightFilled } from './MenuRightFilled';
|
|
151
155
|
export { default as MenuRightOutlined } from './MenuRightOutlined';
|
|
156
|
+
export { default as MenuTriggeOutlined } from './MenuTriggeOutlined';
|
|
152
157
|
export { default as MenuUnfoldOutlined } from './MenuUnfoldOutlined';
|
|
153
158
|
export { default as MessageCloseOutlined } from './MessageCloseOutlined';
|
|
154
159
|
export { default as MessageOutlined } from './MessageOutlined';
|
|
@@ -206,6 +211,8 @@ export { default as SleepClockFilled } from './SleepClockFilled';
|
|
|
206
211
|
export { default as SmallCloseOutlined } from './SmallCloseOutlined';
|
|
207
212
|
export { default as SmallPlusOutlined } from './SmallPlusOutlined';
|
|
208
213
|
export { default as SnoozeOutlined } from './SnoozeOutlined';
|
|
214
|
+
export { default as SolveaLogoFilled } from './SolveaLogoFilled';
|
|
215
|
+
export { default as SolveaTextFilled } from './SolveaTextFilled';
|
|
209
216
|
export { default as Sort2Outlined } from './Sort2Outlined';
|
|
210
217
|
export { default as SortAscOutlined } from './SortAscOutlined';
|
|
211
218
|
export { default as SortDescOutlined } from './SortDescOutlined';
|
package/dist/icons/index.mjs
CHANGED
|
@@ -46,14 +46,17 @@ export { default as CloseOutlined } from "./CloseOutlined.mjs";
|
|
|
46
46
|
export { default as ColorsOutlined } from "./ColorsOutlined.mjs";
|
|
47
47
|
export { default as CommentOutlined } from "./CommentOutlined.mjs";
|
|
48
48
|
export { default as ConnectOutlined } from "./ConnectOutlined.mjs";
|
|
49
|
+
export { default as ContactOutlined } from "./ContactOutlined.mjs";
|
|
49
50
|
export { default as ConversationCloseOutlined } from "./ConversationCloseOutlined.mjs";
|
|
50
51
|
export { default as ConversationMessageOutlined } from "./ConversationMessageOutlined.mjs";
|
|
51
52
|
export { default as CopyOutlined } from "./CopyOutlined.mjs";
|
|
52
53
|
export { default as DeleteFilled } from "./DeleteFilled.mjs";
|
|
53
54
|
export { default as DeleteOutlined } from "./DeleteOutlined.mjs";
|
|
55
|
+
export { default as DeployOutlined } from "./DeployOutlined.mjs";
|
|
54
56
|
export { default as DesktopOutlined } from "./DesktopOutlined.mjs";
|
|
55
57
|
export { default as DiamondOutlined } from "./DiamondOutlined.mjs";
|
|
56
58
|
export { default as DingTalkLogoColored } from "./DingTalkLogoColored.mjs";
|
|
59
|
+
export { default as DiscoverOutlined } from "./DiscoverOutlined.mjs";
|
|
57
60
|
export { default as DiversityOutlined } from "./DiversityOutlined.mjs";
|
|
58
61
|
export { default as DocumentFilled } from "./DocumentFilled.mjs";
|
|
59
62
|
export { default as DocumentFlashTwoOutlined } from "./DocumentFlashTwoOutlined.mjs";
|
|
@@ -125,6 +128,7 @@ export { default as IntegrationFilled } from "./IntegrationFilled.mjs";
|
|
|
125
128
|
export { default as IntercomLogoColored } from "./IntercomLogoColored.mjs";
|
|
126
129
|
export { default as ItalicOutlined } from "./ItalicOutlined.mjs";
|
|
127
130
|
export { default as JijiaLogoColored } from "./JijiaLogoColored.mjs";
|
|
131
|
+
export { default as KnowledgeOutlined } from "./KnowledgeOutlined.mjs";
|
|
128
132
|
export { default as LanguageOutlined } from "./LanguageOutlined.mjs";
|
|
129
133
|
export { default as LayoutFilled } from "./LayoutFilled.mjs";
|
|
130
134
|
export { default as LeftOutlined } from "./LeftOutlined.mjs";
|
|
@@ -149,6 +153,7 @@ export { default as MenuLeftOutlined } from "./MenuLeftOutlined.mjs";
|
|
|
149
153
|
export { default as MenuOutlined } from "./MenuOutlined.mjs";
|
|
150
154
|
export { default as MenuRightFilled } from "./MenuRightFilled.mjs";
|
|
151
155
|
export { default as MenuRightOutlined } from "./MenuRightOutlined.mjs";
|
|
156
|
+
export { default as MenuTriggeOutlined } from "./MenuTriggeOutlined.mjs";
|
|
152
157
|
export { default as MenuUnfoldOutlined } from "./MenuUnfoldOutlined.mjs";
|
|
153
158
|
export { default as MessageCloseOutlined } from "./MessageCloseOutlined.mjs";
|
|
154
159
|
export { default as MessageOutlined } from "./MessageOutlined.mjs";
|
|
@@ -206,6 +211,8 @@ export { default as SleepClockFilled } from "./SleepClockFilled.mjs";
|
|
|
206
211
|
export { default as SmallCloseOutlined } from "./SmallCloseOutlined.mjs";
|
|
207
212
|
export { default as SmallPlusOutlined } from "./SmallPlusOutlined.mjs";
|
|
208
213
|
export { default as SnoozeOutlined } from "./SnoozeOutlined.mjs";
|
|
214
|
+
export { default as SolveaLogoFilled } from "./SolveaLogoFilled.mjs";
|
|
215
|
+
export { default as SolveaTextFilled } from "./SolveaTextFilled.mjs";
|
|
209
216
|
export { default as Sort2Outlined } from "./Sort2Outlined.mjs";
|
|
210
217
|
export { default as SortAscOutlined } from "./SortAscOutlined.mjs";
|
|
211
218
|
export { default as SortDescOutlined } from "./SortDescOutlined.mjs";
|