@mirohq/design-system-icons 1.13.0 → 1.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +164 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +159 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +13 -1
- package/package.json +4 -4
- package/react/ai-cursor.tsx +34 -0
- package/react/chart-line.tsx +34 -0
- package/react/chart-number.tsx +34 -0
- package/react/chart-progress.tsx +34 -0
- package/react/index.ts +6 -0
- package/react/orbit-double.tsx +36 -0
- package/react/square-pencil.tsx +34 -0
- package/svg/24/ai-cursor.svg +2 -0
- package/svg/24/chart-line.svg +2 -0
- package/svg/24/chart-number.svg +2 -0
- package/svg/24/chart-progress.svg +2 -0
- package/svg/24/orbit-double.svg +2 -0
- package/svg/24/square-pencil.svg +2 -0
- package/svg/meta.json +71 -0
package/dist/main.js
CHANGED
|
@@ -130,6 +130,32 @@ const IconAddLineRight = react.forwardRef(
|
|
|
130
130
|
);
|
|
131
131
|
IconAddLineRight[designSystemBaseIcon.iconSymbol] = true;
|
|
132
132
|
|
|
133
|
+
const IconAiCursor = react.forwardRef(
|
|
134
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
135
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
136
|
+
return react.createElement(
|
|
137
|
+
StyledIcon,
|
|
138
|
+
{
|
|
139
|
+
...props,
|
|
140
|
+
debug,
|
|
141
|
+
"aria-hidden": true,
|
|
142
|
+
size,
|
|
143
|
+
viewBox: "0 0 24 24",
|
|
144
|
+
fill: "none",
|
|
145
|
+
ref: forwardRef2
|
|
146
|
+
},
|
|
147
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
148
|
+
"path",
|
|
149
|
+
{
|
|
150
|
+
fill: "currentColor",
|
|
151
|
+
d: "M19.25 1A3.75 3.75 0 0 0 23 4.75v1.5A3.75 3.75 0 0 0 19.25 10h-1.5A3.75 3.75 0 0 0 14 6.25v-1.5A3.75 3.75 0 0 0 17.75 1h1.5ZM4.662 22.607l2.025.574c2.482-4.35 7.221-7 12.228-6.834l.598-2.108L5.138 3.822 3.046 4.99l1.616 17.617Zm11.771-8.132a15.648 15.648 0 0 0-9.998 5.559L5.176 6.319l11.257 8.156Z"
|
|
152
|
+
}
|
|
153
|
+
)
|
|
154
|
+
);
|
|
155
|
+
}
|
|
156
|
+
);
|
|
157
|
+
IconAiCursor[designSystemBaseIcon.iconSymbol] = true;
|
|
158
|
+
|
|
133
159
|
const IconAiText = react.forwardRef(
|
|
134
160
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
135
161
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -2614,6 +2640,84 @@ const IconChartBarY = react.forwardRef(
|
|
|
2614
2640
|
);
|
|
2615
2641
|
IconChartBarY[designSystemBaseIcon.iconSymbol] = true;
|
|
2616
2642
|
|
|
2643
|
+
const IconChartLine = react.forwardRef(
|
|
2644
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
2645
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
2646
|
+
return react.createElement(
|
|
2647
|
+
StyledIcon,
|
|
2648
|
+
{
|
|
2649
|
+
...props,
|
|
2650
|
+
debug,
|
|
2651
|
+
"aria-hidden": true,
|
|
2652
|
+
size,
|
|
2653
|
+
viewBox: "0 0 24 24",
|
|
2654
|
+
fill: "none",
|
|
2655
|
+
ref: forwardRef2
|
|
2656
|
+
},
|
|
2657
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2658
|
+
"path",
|
|
2659
|
+
{
|
|
2660
|
+
fill: "currentColor",
|
|
2661
|
+
d: "M22 22H3l-1-1V4h2v16h18v2ZM11.625 9.219l4.122 3.299 4.405-7.048 1.696 1.06-5 8-1.473.251-4.148-3.319-3.395 5.092-1.664-1.109 4-6 1.457-.226Z"
|
|
2662
|
+
}
|
|
2663
|
+
)
|
|
2664
|
+
);
|
|
2665
|
+
}
|
|
2666
|
+
);
|
|
2667
|
+
IconChartLine[designSystemBaseIcon.iconSymbol] = true;
|
|
2668
|
+
|
|
2669
|
+
const IconChartNumber = react.forwardRef(
|
|
2670
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
2671
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
2672
|
+
return react.createElement(
|
|
2673
|
+
StyledIcon,
|
|
2674
|
+
{
|
|
2675
|
+
...props,
|
|
2676
|
+
debug,
|
|
2677
|
+
"aria-hidden": true,
|
|
2678
|
+
size,
|
|
2679
|
+
viewBox: "0 0 24 24",
|
|
2680
|
+
fill: "none",
|
|
2681
|
+
ref: forwardRef2
|
|
2682
|
+
},
|
|
2683
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2684
|
+
"path",
|
|
2685
|
+
{
|
|
2686
|
+
fill: "currentColor",
|
|
2687
|
+
d: "M5 9H3V7h2a2 2 0 0 1 2 2v8H5V9Zm5 0v6h2V9h-2Zm4 6a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v6Zm3-6v6h2V9h-2Zm4 6a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v6Z"
|
|
2688
|
+
}
|
|
2689
|
+
)
|
|
2690
|
+
);
|
|
2691
|
+
}
|
|
2692
|
+
);
|
|
2693
|
+
IconChartNumber[designSystemBaseIcon.iconSymbol] = true;
|
|
2694
|
+
|
|
2695
|
+
const IconChartProgress = react.forwardRef(
|
|
2696
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
2697
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
2698
|
+
return react.createElement(
|
|
2699
|
+
StyledIcon,
|
|
2700
|
+
{
|
|
2701
|
+
...props,
|
|
2702
|
+
debug,
|
|
2703
|
+
"aria-hidden": true,
|
|
2704
|
+
size,
|
|
2705
|
+
viewBox: "0 0 24 24",
|
|
2706
|
+
fill: "none",
|
|
2707
|
+
ref: forwardRef2
|
|
2708
|
+
},
|
|
2709
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2710
|
+
"path",
|
|
2711
|
+
{
|
|
2712
|
+
fill: "currentColor",
|
|
2713
|
+
d: "M12.016 2A10 10 0 0 1 17 20.66l-1-1.732a8 8 0 1 0-8.022-.012l-1.004 1.729A10 10 0 0 1 12.016 2Zm2.57 5.586L16 9l-7 7-1.414-1.414 7-7ZM11 9.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm5 5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"
|
|
2714
|
+
}
|
|
2715
|
+
)
|
|
2716
|
+
);
|
|
2717
|
+
}
|
|
2718
|
+
);
|
|
2719
|
+
IconChartProgress[designSystemBaseIcon.iconSymbol] = true;
|
|
2720
|
+
|
|
2617
2721
|
const IconChatCheck = react.forwardRef(
|
|
2618
2722
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
2619
2723
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -8764,6 +8868,34 @@ const IconOffice = react.forwardRef(
|
|
|
8764
8868
|
);
|
|
8765
8869
|
IconOffice[designSystemBaseIcon.iconSymbol] = true;
|
|
8766
8870
|
|
|
8871
|
+
const IconOrbitDouble = react.forwardRef(
|
|
8872
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
8873
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
8874
|
+
return react.createElement(
|
|
8875
|
+
StyledIcon,
|
|
8876
|
+
{
|
|
8877
|
+
...props,
|
|
8878
|
+
debug,
|
|
8879
|
+
"aria-hidden": true,
|
|
8880
|
+
size,
|
|
8881
|
+
viewBox: "0 0 24 24",
|
|
8882
|
+
fill: "none",
|
|
8883
|
+
ref: forwardRef2
|
|
8884
|
+
},
|
|
8885
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
8886
|
+
"path",
|
|
8887
|
+
{
|
|
8888
|
+
fill: "currentColor",
|
|
8889
|
+
fillRule: "evenodd",
|
|
8890
|
+
d: "M12.02 4.57c3.135-1.695 6.172-1.934 7.78-.327 1.606 1.607 1.365 4.642-.33 7.777 1.696 3.136 1.936 6.172.329 7.779-1.608 1.607-4.644 1.367-7.779-.328-3.135 1.694-6.17 1.934-7.777.328-1.607-1.607-1.368-4.644.327-7.779-1.695-3.134-1.934-6.17-.327-7.777 1.607-1.607 4.642-1.368 7.777.327ZM5.832 14a9.91 9.91 0 0 0-.393 1.085c-.552 1.878-.193 2.888.218 3.3.411.411 1.42.77 3.3.217.35-.103.712-.235 1.084-.393a19.724 19.724 0 0 1-2.263-1.946 19.5 19.5 0 0 1-1.946-2.262Zm12.377 0a19.707 19.707 0 0 1-1.946 2.263c-.729.73-1.49 1.379-2.262 1.946.372.158.734.29 1.084.393 1.879.553 2.888.194 3.3-.218.41-.41.77-1.42.217-3.3a9.914 9.914 0 0 0-.393-1.083ZM12.02 6.895a17.245 17.245 0 0 0-2.827 2.298 17.25 17.25 0 0 0-2.299 2.828c.61.947 1.377 1.909 2.298 2.83.92.92 1.882 1.686 2.828 2.296a17.236 17.236 0 0 0 2.83-2.297c.92-.92 1.686-1.883 2.296-2.829a17.243 17.243 0 0 0-2.297-2.828 17.238 17.238 0 0 0-2.829-2.298ZM8.957 5.44c-1.88-.552-2.889-.193-3.3.218-.412.411-.77 1.42-.218 3.3.103.35.234.712.393 1.084a19.72 19.72 0 0 1 1.946-2.263c.73-.73 1.491-1.38 2.263-1.946a9.898 9.898 0 0 0-1.084-.393Zm9.428.218c-.411-.411-1.421-.77-3.3-.218A9.9 9.9 0 0 0 14 5.832a19.714 19.714 0 0 1 2.262 1.946 19.73 19.73 0 0 1 1.946 2.262c.158-.372.29-.734.393-1.083.553-1.879.195-2.888-.217-3.3Z",
|
|
8891
|
+
clipRule: "evenodd"
|
|
8892
|
+
}
|
|
8893
|
+
)
|
|
8894
|
+
);
|
|
8895
|
+
}
|
|
8896
|
+
);
|
|
8897
|
+
IconOrbitDouble[designSystemBaseIcon.iconSymbol] = true;
|
|
8898
|
+
|
|
8767
8899
|
const IconOrgChart = react.forwardRef(
|
|
8768
8900
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
8769
8901
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -12480,6 +12612,32 @@ const IconSquareLineSquareDashed = react.forwardRef(
|
|
|
12480
12612
|
);
|
|
12481
12613
|
IconSquareLineSquareDashed[designSystemBaseIcon.iconSymbol] = true;
|
|
12482
12614
|
|
|
12615
|
+
const IconSquarePencil = react.forwardRef(
|
|
12616
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
12617
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
12618
|
+
return react.createElement(
|
|
12619
|
+
StyledIcon,
|
|
12620
|
+
{
|
|
12621
|
+
...props,
|
|
12622
|
+
debug,
|
|
12623
|
+
"aria-hidden": true,
|
|
12624
|
+
size,
|
|
12625
|
+
viewBox: "0 0 24 24",
|
|
12626
|
+
fill: "none",
|
|
12627
|
+
ref: forwardRef2
|
|
12628
|
+
},
|
|
12629
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12630
|
+
"path",
|
|
12631
|
+
{
|
|
12632
|
+
fill: "currentColor",
|
|
12633
|
+
d: "M3 18V6a3 3 0 0 1 3-3h7v2H6a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-7h2v7a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3ZM18.543 1.543a2.768 2.768 0 1 1 3.914 3.914l-5.839 5.839-3.422.684-1.176-1.176.684-3.422 5.839-5.839Zm2.5 1.414c-.3-.3-.786-.3-1.086 0l-5.411 5.41-.272 1.358 1.358-.272 5.411-5.41c.3-.3.3-.786 0-1.086Z"
|
|
12634
|
+
}
|
|
12635
|
+
)
|
|
12636
|
+
);
|
|
12637
|
+
}
|
|
12638
|
+
);
|
|
12639
|
+
IconSquarePencil[designSystemBaseIcon.iconSymbol] = true;
|
|
12640
|
+
|
|
12483
12641
|
const IconSquareRounded = react.forwardRef(
|
|
12484
12642
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
12485
12643
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -15574,6 +15732,7 @@ exports.IconActivity = IconActivity;
|
|
|
15574
15732
|
exports.IconAddLineBottom = IconAddLineBottom;
|
|
15575
15733
|
exports.IconAddLineLeft = IconAddLineLeft;
|
|
15576
15734
|
exports.IconAddLineRight = IconAddLineRight;
|
|
15735
|
+
exports.IconAiCursor = IconAiCursor;
|
|
15577
15736
|
exports.IconAiText = IconAiText;
|
|
15578
15737
|
exports.IconAlignBottom = IconAlignBottom;
|
|
15579
15738
|
exports.IconAlignBottomGroup = IconAlignBottomGroup;
|
|
@@ -15668,6 +15827,9 @@ exports.IconCardNumberThree = IconCardNumberThree;
|
|
|
15668
15827
|
exports.IconCardsPoker = IconCardsPoker;
|
|
15669
15828
|
exports.IconChartBarY = IconChartBarY;
|
|
15670
15829
|
exports.IconChartBarYSimple = IconChartBarYSimple;
|
|
15830
|
+
exports.IconChartLine = IconChartLine;
|
|
15831
|
+
exports.IconChartNumber = IconChartNumber;
|
|
15832
|
+
exports.IconChartProgress = IconChartProgress;
|
|
15671
15833
|
exports.IconChat = IconChat;
|
|
15672
15834
|
exports.IconChatCheck = IconChatCheck;
|
|
15673
15835
|
exports.IconChatCross = IconChatCross;
|
|
@@ -15900,6 +16062,7 @@ exports.IconNotepad = IconNotepad;
|
|
|
15900
16062
|
exports.IconNumber = IconNumber;
|
|
15901
16063
|
exports.IconOctagon = IconOctagon;
|
|
15902
16064
|
exports.IconOffice = IconOffice;
|
|
16065
|
+
exports.IconOrbitDouble = IconOrbitDouble;
|
|
15903
16066
|
exports.IconOrgChart = IconOrgChart;
|
|
15904
16067
|
exports.IconOrientationHorizontal = IconOrientationHorizontal;
|
|
15905
16068
|
exports.IconOrientationVertical = IconOrientationVertical;
|
|
@@ -16041,6 +16204,7 @@ exports.IconSquareBracketsAngleSlash = IconSquareBracketsAngleSlash;
|
|
|
16041
16204
|
exports.IconSquareCirclesTwo = IconSquareCirclesTwo;
|
|
16042
16205
|
exports.IconSquareFrame2LinesCircle = IconSquareFrame2LinesCircle;
|
|
16043
16206
|
exports.IconSquareLineSquareDashed = IconSquareLineSquareDashed;
|
|
16207
|
+
exports.IconSquarePencil = IconSquarePencil;
|
|
16044
16208
|
exports.IconSquareRounded = IconSquareRounded;
|
|
16045
16209
|
exports.IconSquareStarScribble = IconSquareStarScribble;
|
|
16046
16210
|
exports.IconSquareTriangleCirclePlus = IconSquareTriangleCirclePlus;
|