@mirohq/design-system-icons 1.41.0 → 1.42.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 +29 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +29 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +3 -1
- package/package.json +3 -3
- package/react/index.ts +1 -0
- package/react/shape-suggestion.tsx +36 -0
- package/svg/24/shape-suggestion.svg +2 -0
- package/svg/meta.json +22 -0
package/dist/main.js
CHANGED
|
@@ -13098,6 +13098,34 @@ const IconShapeSparkle = react.forwardRef(
|
|
|
13098
13098
|
);
|
|
13099
13099
|
IconShapeSparkle[designSystemBaseIcon.iconSymbol] = true;
|
|
13100
13100
|
|
|
13101
|
+
const IconShapeSuggestion = react.forwardRef(
|
|
13102
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
13103
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
13104
|
+
return react.createElement(
|
|
13105
|
+
StyledIcon,
|
|
13106
|
+
{
|
|
13107
|
+
...props,
|
|
13108
|
+
debug,
|
|
13109
|
+
"aria-hidden": true,
|
|
13110
|
+
size,
|
|
13111
|
+
viewBox: "0 0 24 24",
|
|
13112
|
+
fill: "none",
|
|
13113
|
+
ref: forwardRef2
|
|
13114
|
+
},
|
|
13115
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
13116
|
+
"path",
|
|
13117
|
+
{
|
|
13118
|
+
fill: "currentColor",
|
|
13119
|
+
fillRule: "evenodd",
|
|
13120
|
+
d: "M20 12a8 8 0 0 1-8 8 7.975 7.975 0 0 1-3.934-1.032l-.282-.167-.83-.104-2.43.77.763-2.456-.103-.822-.137-.23A8 8 0 0 1 12 4V2C6.477 2 2 6.477 2 12c0 1.753.452 3.402 1.246 4.836l-1.201 3.867 1.258 1.25 3.833-1.216A9.973 9.973 0 0 0 12 22c5.523 0 10-4.477 10-10h-2ZM17.536 1.202a3 3 0 0 1 4.242 0l1.172 1.172a3 3 0 0 1 0 4.242l-8.476 8.476-5.297 1.06L8 14.975l1.06-5.297 8.476-8.476Zm-6.635 9.462-.646 3.232 3.232-.646 5.255-5.256-2.586-2.586-5.255 5.256Zm9.463-8.048a1 1 0 0 0-1.414 0l-1.38 1.378 2.586 2.586 1.38-1.378a1 1 0 0 0 0-1.414l-1.172-1.172Z",
|
|
13121
|
+
clipRule: "evenodd"
|
|
13122
|
+
}
|
|
13123
|
+
)
|
|
13124
|
+
);
|
|
13125
|
+
}
|
|
13126
|
+
);
|
|
13127
|
+
IconShapeSuggestion[designSystemBaseIcon.iconSymbol] = true;
|
|
13128
|
+
|
|
13101
13129
|
const IconShapesLinesStacked = react.forwardRef(
|
|
13102
13130
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
13103
13131
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -18432,6 +18460,7 @@ exports.IconSelect = IconSelect;
|
|
|
18432
18460
|
exports.IconSentiment = IconSentiment;
|
|
18433
18461
|
exports.IconShadow = IconShadow;
|
|
18434
18462
|
exports.IconShapeSparkle = IconShapeSparkle;
|
|
18463
|
+
exports.IconShapeSuggestion = IconShapeSuggestion;
|
|
18435
18464
|
exports.IconShapes = IconShapes;
|
|
18436
18465
|
exports.IconShapesLines = IconShapesLines;
|
|
18437
18466
|
exports.IconShapesLinesStacked = IconShapesLinesStacked;
|