@mirohq/design-system-icons 0.53.1 → 0.54.1
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 +126 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +124 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +7 -1
- package/package.json +3 -3
- package/react/diagramming.tsx +63 -0
- package/react/index.ts +3 -0
- package/react/table.tsx +37 -0
- package/react/wifi.tsx +38 -0
- package/svg/24/diagramming.svg +2 -0
- package/svg/24/table.svg +2 -0
- package/svg/24/wifi.svg +2 -0
- package/svg/meta.json +28 -1
package/dist/main.js
CHANGED
|
@@ -5327,6 +5327,70 @@ const IconDiagrammingFormat = react.forwardRef(
|
|
|
5327
5327
|
);
|
|
5328
5328
|
IconDiagrammingFormat[designSystemBaseIcon.iconSymbol] = true;
|
|
5329
5329
|
|
|
5330
|
+
const IconDiagramming = react.forwardRef(
|
|
5331
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
5332
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
5333
|
+
return react.createElement(
|
|
5334
|
+
StyledIcon,
|
|
5335
|
+
{
|
|
5336
|
+
...props,
|
|
5337
|
+
weight,
|
|
5338
|
+
debug,
|
|
5339
|
+
"aria-hidden": true,
|
|
5340
|
+
size,
|
|
5341
|
+
viewBox: "0 0 24 24",
|
|
5342
|
+
fill: "none",
|
|
5343
|
+
ref: forwardRef2
|
|
5344
|
+
},
|
|
5345
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5346
|
+
"path",
|
|
5347
|
+
{
|
|
5348
|
+
stroke: "currentColor",
|
|
5349
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
5350
|
+
d: "M14 5h-4c-2.2091 0-4 1.7909-4 4M14 19h-5c-1.6569 0-3-1.3431-3-3"
|
|
5351
|
+
}
|
|
5352
|
+
),
|
|
5353
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5354
|
+
"rect",
|
|
5355
|
+
{
|
|
5356
|
+
width: 6,
|
|
5357
|
+
height: 6,
|
|
5358
|
+
x: 3,
|
|
5359
|
+
y: 9,
|
|
5360
|
+
stroke: "currentColor",
|
|
5361
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
5362
|
+
rx: 1.5
|
|
5363
|
+
}
|
|
5364
|
+
),
|
|
5365
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5366
|
+
"rect",
|
|
5367
|
+
{
|
|
5368
|
+
width: 6,
|
|
5369
|
+
height: 6,
|
|
5370
|
+
x: 14,
|
|
5371
|
+
y: 3,
|
|
5372
|
+
stroke: "currentColor",
|
|
5373
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
5374
|
+
rx: 1.5
|
|
5375
|
+
}
|
|
5376
|
+
),
|
|
5377
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5378
|
+
"rect",
|
|
5379
|
+
{
|
|
5380
|
+
width: 6,
|
|
5381
|
+
height: 6,
|
|
5382
|
+
x: 14,
|
|
5383
|
+
y: 15,
|
|
5384
|
+
stroke: "currentColor",
|
|
5385
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
5386
|
+
rx: 1.5
|
|
5387
|
+
}
|
|
5388
|
+
)
|
|
5389
|
+
);
|
|
5390
|
+
}
|
|
5391
|
+
);
|
|
5392
|
+
IconDiagramming[designSystemBaseIcon.iconSymbol] = true;
|
|
5393
|
+
|
|
5330
5394
|
const IconDistributeHorizontal = react.forwardRef(
|
|
5331
5395
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
5332
5396
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -15287,6 +15351,35 @@ const IconTableFormat = react.forwardRef(
|
|
|
15287
15351
|
);
|
|
15288
15352
|
IconTableFormat[designSystemBaseIcon.iconSymbol] = true;
|
|
15289
15353
|
|
|
15354
|
+
const IconTable = react.forwardRef(
|
|
15355
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
15356
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
15357
|
+
return react.createElement(
|
|
15358
|
+
StyledIcon,
|
|
15359
|
+
{
|
|
15360
|
+
...props,
|
|
15361
|
+
weight,
|
|
15362
|
+
debug,
|
|
15363
|
+
"aria-hidden": true,
|
|
15364
|
+
size,
|
|
15365
|
+
viewBox: "0 0 24 24",
|
|
15366
|
+
fill: "none",
|
|
15367
|
+
ref: forwardRef2
|
|
15368
|
+
},
|
|
15369
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
15370
|
+
"path",
|
|
15371
|
+
{
|
|
15372
|
+
fill: "currentColor",
|
|
15373
|
+
fillRule: "evenodd",
|
|
15374
|
+
d: "M4 5c0-.5523.4477-1 1-1h14c.5523 0 1 .4477 1 1v3h-16v-3Zm7 5h9v4h-9v-4Zm-2 4v-4h-5v4h5Zm-5 2h5v4h-4c-.5523 0-1-.4477-1-1v-3Zm7 0h9v3c0 .5523-.4477 1-1 1h-8v-4Zm-6-14c-1.6568 0-3 1.3432-3 3v14c0 1.6569 1.3432 3 3 3h14c1.6569 0 3-1.3431 3-3v-14c0-1.6568-1.3431-3-3-3h-14Z",
|
|
15375
|
+
clipRule: "evenodd"
|
|
15376
|
+
}
|
|
15377
|
+
)
|
|
15378
|
+
);
|
|
15379
|
+
}
|
|
15380
|
+
);
|
|
15381
|
+
IconTable[designSystemBaseIcon.iconSymbol] = true;
|
|
15382
|
+
|
|
15290
15383
|
const IconTag = react.forwardRef(
|
|
15291
15384
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
15292
15385
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -17429,6 +17522,36 @@ const IconWallet = react.forwardRef(
|
|
|
17429
17522
|
);
|
|
17430
17523
|
IconWallet[designSystemBaseIcon.iconSymbol] = true;
|
|
17431
17524
|
|
|
17525
|
+
const IconWifi = react.forwardRef(
|
|
17526
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
17527
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
17528
|
+
return react.createElement(
|
|
17529
|
+
StyledIcon,
|
|
17530
|
+
{
|
|
17531
|
+
...props,
|
|
17532
|
+
weight,
|
|
17533
|
+
debug,
|
|
17534
|
+
"aria-hidden": true,
|
|
17535
|
+
size,
|
|
17536
|
+
viewBox: "0 0 24 24",
|
|
17537
|
+
fill: "none",
|
|
17538
|
+
ref: forwardRef2
|
|
17539
|
+
},
|
|
17540
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: 12, cy: 17.759, r: 1.5, fill: "currentColor" }),
|
|
17541
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
17542
|
+
"path",
|
|
17543
|
+
{
|
|
17544
|
+
stroke: "currentColor",
|
|
17545
|
+
strokeLinecap: "round",
|
|
17546
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
17547
|
+
d: "M7.2353 13.9013c2.647-2.647 6.3529-3.1765 9.5294 0m-13.7647-4.2353c5.2941-5.2941 12.7059-5.2941 18 0"
|
|
17548
|
+
}
|
|
17549
|
+
)
|
|
17550
|
+
);
|
|
17551
|
+
}
|
|
17552
|
+
);
|
|
17553
|
+
IconWifi[designSystemBaseIcon.iconSymbol] = true;
|
|
17554
|
+
|
|
17432
17555
|
exports.IconActivity = IconActivity;
|
|
17433
17556
|
exports.IconAddLineBottom = IconAddLineBottom;
|
|
17434
17557
|
exports.IconAddLineRight = IconAddLineRight;
|
|
@@ -17576,6 +17699,7 @@ exports.IconDiagramCardSmall2 = IconDiagramCardSmall2;
|
|
|
17576
17699
|
exports.IconDiagramCardSmall3 = IconDiagramCardSmall3;
|
|
17577
17700
|
exports.IconDiagramCardTeam = IconDiagramCardTeam;
|
|
17578
17701
|
exports.IconDiagramCardUser = IconDiagramCardUser;
|
|
17702
|
+
exports.IconDiagramming = IconDiagramming;
|
|
17579
17703
|
exports.IconDiagrammingFormat = IconDiagrammingFormat;
|
|
17580
17704
|
exports.IconDistributeHorizontal = IconDistributeHorizontal;
|
|
17581
17705
|
exports.IconDistributeVertical = IconDistributeVertical;
|
|
@@ -17856,6 +17980,7 @@ exports.IconStroke4 = IconStroke4;
|
|
|
17856
17980
|
exports.IconStroke5 = IconStroke5;
|
|
17857
17981
|
exports.IconStroke6 = IconStroke6;
|
|
17858
17982
|
exports.IconSwitch = IconSwitch;
|
|
17983
|
+
exports.IconTable = IconTable;
|
|
17859
17984
|
exports.IconTableFormat = IconTableFormat;
|
|
17860
17985
|
exports.IconTag = IconTag;
|
|
17861
17986
|
exports.IconTasks = IconTasks;
|
|
@@ -17916,4 +18041,5 @@ exports.IconVideoCameraSimpleSlash = IconVideoCameraSimpleSlash;
|
|
|
17916
18041
|
exports.IconViewCenter = IconViewCenter;
|
|
17917
18042
|
exports.IconViewSideLeft = IconViewSideLeft;
|
|
17918
18043
|
exports.IconWallet = IconWallet;
|
|
18044
|
+
exports.IconWifi = IconWifi;
|
|
17919
18045
|
//# sourceMappingURL=main.js.map
|