@mirohq/design-system-icons 0.71.0 → 0.72.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 +209 -4
- package/dist/main.js.map +1 -1
- package/dist/module.js +206 -5
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +9 -1
- package/package.json +3 -3
- package/react/alt-text-underline.tsx +47 -0
- package/react/hand-raised-filled.tsx +58 -4
- package/react/index.ts +4 -0
- package/react/insights.tsx +41 -0
- package/react/raised-hand.tsx +37 -0
- package/react/social-asana.tsx +37 -0
- package/svg/24/alt-text-underline.svg +2 -0
- package/svg/24/hand-raised-filled-new.svg +2 -0
- package/svg/24/hand-raised-filled.svg +1 -1
- package/svg/24/insights.svg +2 -0
- package/svg/24/raised-hand.svg +2 -0
- package/svg/24/social-asana.svg +2 -0
- package/svg/meta.json +16 -0
package/dist/main.js
CHANGED
|
@@ -1140,6 +1140,51 @@ const IconAlignmentScale = react.forwardRef(
|
|
|
1140
1140
|
);
|
|
1141
1141
|
IconAlignmentScale[designSystemBaseIcon.iconSymbol] = true;
|
|
1142
1142
|
|
|
1143
|
+
const IconAltTextUnderline = react.forwardRef(
|
|
1144
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
1145
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
1146
|
+
return react.createElement(
|
|
1147
|
+
StyledIcon,
|
|
1148
|
+
{
|
|
1149
|
+
...props,
|
|
1150
|
+
weight,
|
|
1151
|
+
debug,
|
|
1152
|
+
"aria-hidden": true,
|
|
1153
|
+
size,
|
|
1154
|
+
viewBox: "0 0 24 24",
|
|
1155
|
+
fill: "none",
|
|
1156
|
+
ref: forwardRef2
|
|
1157
|
+
},
|
|
1158
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1159
|
+
"path",
|
|
1160
|
+
{
|
|
1161
|
+
stroke: "currentColor",
|
|
1162
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
1163
|
+
d: "M12 8v7h4M16 9h6M19 9v7"
|
|
1164
|
+
}
|
|
1165
|
+
),
|
|
1166
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1167
|
+
"path",
|
|
1168
|
+
{
|
|
1169
|
+
fill: "currentColor",
|
|
1170
|
+
fillRule: "evenodd",
|
|
1171
|
+
d: "m4.077 16 .6-1.5h2.6459l.6 1.5h2.154l-3.1485-7.8714h-1.857l-3.1485 7.8714h2.154Zm2.4459-3.5h-1.046l.523-1.3074.523 1.3074Z",
|
|
1172
|
+
clipRule: "evenodd"
|
|
1173
|
+
}
|
|
1174
|
+
),
|
|
1175
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1176
|
+
"path",
|
|
1177
|
+
{
|
|
1178
|
+
stroke: "currentColor",
|
|
1179
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
1180
|
+
d: "M2 19h20"
|
|
1181
|
+
}
|
|
1182
|
+
)
|
|
1183
|
+
);
|
|
1184
|
+
}
|
|
1185
|
+
);
|
|
1186
|
+
IconAltTextUnderline[designSystemBaseIcon.iconSymbol] = true;
|
|
1187
|
+
|
|
1143
1188
|
const IconAltText = react.forwardRef(
|
|
1144
1189
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
1145
1190
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -16788,17 +16833,15 @@ const IconHandPointing = react.forwardRef(
|
|
|
16788
16833
|
);
|
|
16789
16834
|
IconHandPointing[designSystemBaseIcon.iconSymbol] = true;
|
|
16790
16835
|
|
|
16791
|
-
const
|
|
16792
|
-
(
|
|
16836
|
+
const IconHandRaisedFilledNew = react.forwardRef(
|
|
16837
|
+
(props, forwardRef2) => {
|
|
16793
16838
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
16794
16839
|
return react.createElement(
|
|
16795
16840
|
StyledIcon,
|
|
16796
16841
|
{
|
|
16797
16842
|
...props,
|
|
16798
|
-
weight,
|
|
16799
16843
|
debug,
|
|
16800
16844
|
"aria-hidden": true,
|
|
16801
|
-
size,
|
|
16802
16845
|
viewBox: "0 0 24 24",
|
|
16803
16846
|
fill: "none",
|
|
16804
16847
|
ref: forwardRef2
|
|
@@ -16815,6 +16858,70 @@ const IconHandRaisedFilled = react.forwardRef(
|
|
|
16815
16858
|
);
|
|
16816
16859
|
}
|
|
16817
16860
|
);
|
|
16861
|
+
const IconHandRaisedFilledOld = react.forwardRef(
|
|
16862
|
+
(props, forwardRef2) => {
|
|
16863
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
16864
|
+
return react.createElement(
|
|
16865
|
+
StyledIcon,
|
|
16866
|
+
{
|
|
16867
|
+
...props,
|
|
16868
|
+
debug,
|
|
16869
|
+
"aria-hidden": true,
|
|
16870
|
+
viewBox: "0 0 24 24",
|
|
16871
|
+
fill: "none",
|
|
16872
|
+
ref: forwardRef2
|
|
16873
|
+
},
|
|
16874
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
16875
|
+
"path",
|
|
16876
|
+
{
|
|
16877
|
+
fill: "currentColor",
|
|
16878
|
+
fillRule: "evenodd",
|
|
16879
|
+
d: "M3.5 17c0 6.2701 8.5 8 12.5 3l4.5416-6.3583c.2688-.3763.2456-.8891-.0617-1.2347-.1091-.1227-.1948-.2169-.2049-.222-.165-.1425-.3675-.2175-.5925-.2175-.165 0-.315.045-.45.12-.03.0075-3.2325 1.845-3.2325 1.845v-8.9325c0-.6225-.3775-1-1-1s-1 .3775-1 1v5.25a.75.75 0 0 1-1.5 0v-7.25c0-.6225-.3775-1-1-1s-1 .3775-1 1v7.25a.75.75 0 0 1-1.5 0v-6.25c0-.6225-.3775-1-1-1s-1 .3775-1 1v6.25a.75.75 0 0 1-1.5 0v-4.25c0-.6225-.3775-1-1-1s-1 .3775-1 1v11Z",
|
|
16880
|
+
clipRule: "evenodd"
|
|
16881
|
+
}
|
|
16882
|
+
),
|
|
16883
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
16884
|
+
"path",
|
|
16885
|
+
{
|
|
16886
|
+
stroke: "currentColor",
|
|
16887
|
+
strokeLinejoin: "round",
|
|
16888
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
16889
|
+
d: "M12 12h.0007"
|
|
16890
|
+
}
|
|
16891
|
+
),
|
|
16892
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
16893
|
+
"path",
|
|
16894
|
+
{
|
|
16895
|
+
stroke: "currentColor",
|
|
16896
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
16897
|
+
d: "M12 12v.0001"
|
|
16898
|
+
}
|
|
16899
|
+
)
|
|
16900
|
+
);
|
|
16901
|
+
}
|
|
16902
|
+
);
|
|
16903
|
+
const IconHandRaisedFilled = react.forwardRef(
|
|
16904
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
16905
|
+
const [v1] = designSystemExperiments.useNewDesignLanguageIcons();
|
|
16906
|
+
return v1 ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
16907
|
+
IconHandRaisedFilledNew,
|
|
16908
|
+
{
|
|
16909
|
+
...props,
|
|
16910
|
+
size,
|
|
16911
|
+
weight,
|
|
16912
|
+
ref: forwardRef2
|
|
16913
|
+
}
|
|
16914
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
16915
|
+
IconHandRaisedFilledOld,
|
|
16916
|
+
{
|
|
16917
|
+
...props,
|
|
16918
|
+
size,
|
|
16919
|
+
weight,
|
|
16920
|
+
ref: forwardRef2
|
|
16921
|
+
}
|
|
16922
|
+
);
|
|
16923
|
+
}
|
|
16924
|
+
);
|
|
16818
16925
|
IconHandRaisedFilled[designSystemBaseIcon.iconSymbol] = true;
|
|
16819
16926
|
|
|
16820
16927
|
const IconHandNew = react.forwardRef(
|
|
@@ -18036,6 +18143,42 @@ const IconInformationMarkCircle = react.forwardRef(
|
|
|
18036
18143
|
);
|
|
18037
18144
|
IconInformationMarkCircle[designSystemBaseIcon.iconSymbol] = true;
|
|
18038
18145
|
|
|
18146
|
+
const IconInsights = react.forwardRef(
|
|
18147
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
18148
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
18149
|
+
return react.createElement(
|
|
18150
|
+
StyledIcon,
|
|
18151
|
+
{
|
|
18152
|
+
...props,
|
|
18153
|
+
weight,
|
|
18154
|
+
debug,
|
|
18155
|
+
"aria-hidden": true,
|
|
18156
|
+
size,
|
|
18157
|
+
viewBox: "0 0 24 24",
|
|
18158
|
+
fill: "none",
|
|
18159
|
+
ref: forwardRef2
|
|
18160
|
+
},
|
|
18161
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
18162
|
+
"path",
|
|
18163
|
+
{
|
|
18164
|
+
stroke: "currentColor",
|
|
18165
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
18166
|
+
d: "M5 17h10c1.1046 0 2-.8954 2-2v-10c0-1.1046-.8954-2-2-2h-10c-1.1046 0-2 .8954-2 2v10c0 1.1046.8954 2 2 2Z"
|
|
18167
|
+
}
|
|
18168
|
+
),
|
|
18169
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
18170
|
+
"path",
|
|
18171
|
+
{
|
|
18172
|
+
stroke: "currentColor",
|
|
18173
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
18174
|
+
d: "M6.0307 17.7085c-.1918 1.0878.5345 2.1251 1.6223 2.3169l9.8481 1.7365c1.0878.1918 2.1251-.5345 2.3169-1.6223l1.7365-9.8481c.1918-1.0878-.5345-2.1251-1.6223-2.317l-3.1397-.5535"
|
|
18175
|
+
}
|
|
18176
|
+
)
|
|
18177
|
+
);
|
|
18178
|
+
}
|
|
18179
|
+
);
|
|
18180
|
+
IconInsights[designSystemBaseIcon.iconSymbol] = true;
|
|
18181
|
+
|
|
18039
18182
|
const IconKanban = react.forwardRef(
|
|
18040
18183
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
18041
18184
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -26974,6 +27117,35 @@ const IconQuotes = react.forwardRef(
|
|
|
26974
27117
|
);
|
|
26975
27118
|
IconQuotes[designSystemBaseIcon.iconSymbol] = true;
|
|
26976
27119
|
|
|
27120
|
+
const IconRaisedHand = react.forwardRef(
|
|
27121
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
27122
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
27123
|
+
return react.createElement(
|
|
27124
|
+
StyledIcon,
|
|
27125
|
+
{
|
|
27126
|
+
...props,
|
|
27127
|
+
weight,
|
|
27128
|
+
debug,
|
|
27129
|
+
"aria-hidden": true,
|
|
27130
|
+
size,
|
|
27131
|
+
viewBox: "0 0 24 24",
|
|
27132
|
+
fill: "none",
|
|
27133
|
+
ref: forwardRef2
|
|
27134
|
+
},
|
|
27135
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
27136
|
+
"path",
|
|
27137
|
+
{
|
|
27138
|
+
stroke: "currentColor",
|
|
27139
|
+
strokeLinejoin: "bevel",
|
|
27140
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
27141
|
+
d: "M10.088 12v-5.25c0-.9665-.5336-1.75-1.5001-1.75s-1.5.7835-1.5 1.75v5.25-3c0-1-.5-2-1.5-2s-1.5 1-1.5 2v4c0 4.4183 1.7499 8 5.75 8h1.5c2 0 3.619-.8689 5.1661-2.4161l4.0032-4.0031c.6138-.6138.6595-1.592.1075-2.2619-.5638-.6841-1.5612-.8145-2.2819-.2983l-2.2448 1.6081v-6.8787c0-.9665-.5336-1.75-1.5001-1.75s-1.5.7835-1.5 1.75v5.25m-2.9999-2v-5.25c0-.9665.5334-1.75 1.4999-1.75s1.5.7835 1.5 1.75v5"
|
|
27142
|
+
}
|
|
27143
|
+
)
|
|
27144
|
+
);
|
|
27145
|
+
}
|
|
27146
|
+
);
|
|
27147
|
+
IconRaisedHand[designSystemBaseIcon.iconSymbol] = true;
|
|
27148
|
+
|
|
26977
27149
|
const IconRatio169 = react.forwardRef(
|
|
26978
27150
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
26979
27151
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -31700,6 +31872,35 @@ const IconSocialAdo = react.forwardRef(
|
|
|
31700
31872
|
);
|
|
31701
31873
|
IconSocialAdo[designSystemBaseIcon.iconSymbol] = true;
|
|
31702
31874
|
|
|
31875
|
+
const IconSocialAsana = react.forwardRef(
|
|
31876
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
31877
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
31878
|
+
return react.createElement(
|
|
31879
|
+
StyledIcon,
|
|
31880
|
+
{
|
|
31881
|
+
...props,
|
|
31882
|
+
weight,
|
|
31883
|
+
debug,
|
|
31884
|
+
"aria-hidden": true,
|
|
31885
|
+
size,
|
|
31886
|
+
viewBox: "0 0 24 24",
|
|
31887
|
+
fill: "none",
|
|
31888
|
+
ref: forwardRef2
|
|
31889
|
+
},
|
|
31890
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
31891
|
+
"path",
|
|
31892
|
+
{
|
|
31893
|
+
fill: "currentColor",
|
|
31894
|
+
fillRule: "evenodd",
|
|
31895
|
+
d: "M17.6504 12.6201c-2.4023 0-4.3496 1.9474-4.3496 4.3498 0 2.4022 1.9473 4.3497 4.3496 4.3497 2.4023 0 4.3496-1.9475 4.3496-4.3497 0-2.4024-1.9473-4.3498-4.3496-4.3498Zm-11.3008.0003c-2.4022 0-4.3496 1.9471-4.3496 4.3495 0 2.4022 1.9474 4.3497 4.3496 4.3497 2.4024 0 4.3499-1.9475 4.3499-4.3497 0-2.4024-1.9475-4.3495-4.3499-4.3495Zm10-5.4375c0 2.4024-1.9474 4.35-4.3496 4.35-2.4023 0-4.3496-1.9476-4.3496-4.35 0-2.402 1.9473-4.3496 4.3496-4.3496 2.4022 0 4.3496 1.9476 4.3496 4.3496Z",
|
|
31896
|
+
clipRule: "evenodd"
|
|
31897
|
+
}
|
|
31898
|
+
)
|
|
31899
|
+
);
|
|
31900
|
+
}
|
|
31901
|
+
);
|
|
31902
|
+
IconSocialAsana[designSystemBaseIcon.iconSymbol] = true;
|
|
31903
|
+
|
|
31703
31904
|
const IconSocialDrawio = react.forwardRef(
|
|
31704
31905
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
31705
31906
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -41389,6 +41590,7 @@ exports.IconAlignTop = IconAlignTop;
|
|
|
41389
41590
|
exports.IconAlignTopGroup = IconAlignTopGroup;
|
|
41390
41591
|
exports.IconAlignmentScale = IconAlignmentScale;
|
|
41391
41592
|
exports.IconAltText = IconAltText;
|
|
41593
|
+
exports.IconAltTextUnderline = IconAltTextUnderline;
|
|
41392
41594
|
exports.IconArrowArcLeft = IconArrowArcLeft;
|
|
41393
41595
|
exports.IconArrowArcRight = IconArrowArcRight;
|
|
41394
41596
|
exports.IconArrowBendUpLeft = IconArrowBendUpLeft;
|
|
@@ -41601,6 +41803,7 @@ exports.IconImage = IconImage;
|
|
|
41601
41803
|
exports.IconIndentLeft = IconIndentLeft;
|
|
41602
41804
|
exports.IconIndentRight = IconIndentRight;
|
|
41603
41805
|
exports.IconInformationMarkCircle = IconInformationMarkCircle;
|
|
41806
|
+
exports.IconInsights = IconInsights;
|
|
41604
41807
|
exports.IconKanban = IconKanban;
|
|
41605
41808
|
exports.IconKey = IconKey;
|
|
41606
41809
|
exports.IconKeycap = IconKeycap;
|
|
@@ -41721,6 +41924,7 @@ exports.IconPushPinFilled = IconPushPinFilled;
|
|
|
41721
41924
|
exports.IconQuestionMark = IconQuestionMark;
|
|
41722
41925
|
exports.IconQuestionMarkCircle = IconQuestionMarkCircle;
|
|
41723
41926
|
exports.IconQuotes = IconQuotes;
|
|
41927
|
+
exports.IconRaisedHand = IconRaisedHand;
|
|
41724
41928
|
exports.IconRatio169 = IconRatio169;
|
|
41725
41929
|
exports.IconRatio43 = IconRatio43;
|
|
41726
41930
|
exports.IconRatioSquare = IconRatioSquare;
|
|
@@ -41779,6 +41983,7 @@ exports.IconSmileyChat = IconSmileyChat;
|
|
|
41779
41983
|
exports.IconSmileyPlus = IconSmileyPlus;
|
|
41780
41984
|
exports.IconSmileySticker = IconSmileySticker;
|
|
41781
41985
|
exports.IconSocialAdo = IconSocialAdo;
|
|
41986
|
+
exports.IconSocialAsana = IconSocialAsana;
|
|
41782
41987
|
exports.IconSocialDrawio = IconSocialDrawio;
|
|
41783
41988
|
exports.IconSocialFacebook = IconSocialFacebook;
|
|
41784
41989
|
exports.IconSocialInstagram = IconSocialInstagram;
|