@mirohq/design-system-icons 0.48.5 → 0.49.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 +898 -49
- package/dist/main.js.map +1 -1
- package/dist/module.js +874 -50
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +51 -1
- package/package.json +3 -3
- package/react/alignment-scale.tsx +42 -0
- package/react/arrow-fat-left-right.tsx +42 -0
- package/react/arrow-fat-left.tsx +41 -0
- package/react/arrows-time-backward.tsx +40 -0
- package/react/arrows-time-forward.tsx +40 -0
- package/react/box-captions.tsx +40 -0
- package/react/clock.tsx +1 -1
- package/react/columns.tsx +36 -0
- package/react/diagramming.tsx +36 -0
- package/react/doc.tsx +36 -0
- package/react/external.tsx +36 -0
- package/react/index.ts +25 -0
- package/react/monitor-pause.tsx +5 -0
- package/react/monitor-play.tsx +5 -0
- package/react/monitor-stop.tsx +6 -1
- package/react/proto-button.tsx +42 -0
- package/react/proto-checkbox.tsx +36 -0
- package/react/proto-dropdown.tsx +42 -0
- package/react/proto-input.tsx +42 -0
- package/react/proto-number.tsx +42 -0
- package/react/proto-radio.tsx +40 -0
- package/react/proto-slider.tsx +38 -0
- package/react/prototype.tsx +36 -0
- package/react/rectangle-dot-large.tsx +36 -0
- package/react/rectangle-dot-medium.tsx +36 -0
- package/react/rectangle-dot-small.tsx +36 -0
- package/react/shield-lock-filled.tsx +36 -0
- package/react/slide.tsx +36 -0
- package/react/sparks.tsx +1 -1
- package/react/switch.tsx +8 -6
- package/react/table.tsx +36 -0
- package/react/timeline.tsx +36 -0
- package/svg/24/alignment-scale.svg +2 -0
- package/svg/24/arrow-fat-left-right.svg +2 -0
- package/svg/24/arrow-fat-left.svg +2 -0
- package/svg/24/arrows-time-backward.svg +2 -0
- package/svg/24/arrows-time-forward.svg +2 -0
- package/svg/24/box-captions.svg +2 -0
- package/svg/24/clock.svg +1 -1
- package/svg/24/columns.svg +2 -0
- package/svg/24/diagramming.svg +2 -0
- package/svg/24/doc.svg +2 -0
- package/svg/24/external.svg +2 -0
- package/svg/24/monitor-pause.svg +1 -1
- package/svg/24/monitor-play.svg +1 -1
- package/svg/24/monitor-stop.svg +1 -1
- package/svg/24/proto-button.svg +2 -0
- package/svg/24/proto-checkbox.svg +2 -0
- package/svg/24/proto-dropdown.svg +2 -0
- package/svg/24/proto-input.svg +2 -0
- package/svg/24/proto-number.svg +2 -0
- package/svg/24/proto-radio.svg +2 -0
- package/svg/24/proto-slider.svg +2 -0
- package/svg/24/prototype.svg +2 -0
- package/svg/24/rectangle-dot-large.svg +2 -0
- package/svg/24/rectangle-dot-medium.svg +2 -0
- package/svg/24/rectangle-dot-small.svg +2 -0
- package/svg/24/shield-lock-filled.svg +2 -0
- package/svg/24/slide.svg +2 -0
- package/svg/24/sparks.svg +1 -1
- package/svg/24/switch.svg +1 -1
- package/svg/24/table.svg +2 -0
- package/svg/24/timeline.svg +2 -0
- package/svg/meta.json +200 -2
package/dist/main.js
CHANGED
|
@@ -409,6 +409,43 @@ const IconAlignTop = react.forwardRef(
|
|
|
409
409
|
);
|
|
410
410
|
IconAlignTop[designSystemBaseIcon.iconSymbol] = true;
|
|
411
411
|
|
|
412
|
+
const IconAlignmentScale = react.forwardRef(
|
|
413
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
414
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
415
|
+
return react.createElement(
|
|
416
|
+
StyledIcon,
|
|
417
|
+
{
|
|
418
|
+
...props,
|
|
419
|
+
weight,
|
|
420
|
+
debug,
|
|
421
|
+
size,
|
|
422
|
+
viewBox: "0 0 24 24",
|
|
423
|
+
fill: "none",
|
|
424
|
+
ref: forwardRef2
|
|
425
|
+
},
|
|
426
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
427
|
+
"path",
|
|
428
|
+
{
|
|
429
|
+
fill: "currentColor",
|
|
430
|
+
fillRule: "evenodd",
|
|
431
|
+
d: "M4.0928 6.0354c-.044.052-.0928.1528-.0928.294v5.3413c0 .1412.0488.2419.0928.2939a.16.16 0 0 0 .036.0335l.061.004a1 1 0 0 1-.0648 1.9979c-1.3236 0-2.125-1.2058-2.125-2.3293v-5.3414c0-1.1235.8014-2.3293 2.125-2.3293h15.75c1.3236 0 2.125 1.2058 2.125 2.3293v5.3414c0 1.1235-.8014 2.3293-2.125 2.3293h-6.875c-.5523 0-1-.4477-1-1s.4477-1 1-1h6.868c.0068-.0036.0203-.013.0392-.0354.044-.052.0928-.1527.0928-.2939v-5.3414c0-.1411-.0488-.242-.0928-.294-.0189-.0223-.0324-.0317-.0392-.0353h-15.736c-.0068.0036-.0202.013-.0392.0354Z",
|
|
432
|
+
clipRule: "evenodd"
|
|
433
|
+
}
|
|
434
|
+
),
|
|
435
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
436
|
+
"path",
|
|
437
|
+
{
|
|
438
|
+
fill: "currentColor",
|
|
439
|
+
fillRule: "evenodd",
|
|
440
|
+
d: "M6.75 5c.5523 0 1 .4477 1 1v2.5c0 .5523-.4477 1-1 1s-1-.4477-1-1v-2.5c0-.5523.4477-1 1-1ZM12 5c.5523 0 1 .4477 1 1v2.5c0 .5523-.4477 1-1 1s-1-.4477-1-1v-2.5c0-.5523.4477-1 1-1ZM17.25 5c.5523 0 1 .4477 1 1v2.5c0 .5523-.4477 1-1 1s-1-.4477-1-1v-2.5c0-.5523.4477-1 1-1ZM8.5 11a1 1 0 0 1 .8944.5528l3.5 7a.9998.9998 0 0 1-1.1691 1.4087l-3.2253-.9215-3.2253.9215a.9998.9998 0 0 1-1.1691-1.4087l3.5-7a1 1 0 0 1 .8944-.5528Zm-1.589 6.414 1.3143-.3755a1 1 0 0 1 .5494 0l1.3143.3755-1.589-3.1779-1.589 3.1779Z",
|
|
441
|
+
clipRule: "evenodd"
|
|
442
|
+
}
|
|
443
|
+
)
|
|
444
|
+
);
|
|
445
|
+
}
|
|
446
|
+
);
|
|
447
|
+
IconAlignmentScale[designSystemBaseIcon.iconSymbol] = true;
|
|
448
|
+
|
|
412
449
|
const IconArrowArcLeft = react.forwardRef(
|
|
413
450
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
414
451
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -892,6 +929,79 @@ const IconArrowElbowDownRight = react.forwardRef(
|
|
|
892
929
|
);
|
|
893
930
|
IconArrowElbowDownRight[designSystemBaseIcon.iconSymbol] = true;
|
|
894
931
|
|
|
932
|
+
const IconArrowFatLeftRight = react.forwardRef(
|
|
933
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
934
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
935
|
+
return react.createElement(
|
|
936
|
+
StyledIcon,
|
|
937
|
+
{
|
|
938
|
+
...props,
|
|
939
|
+
weight,
|
|
940
|
+
debug,
|
|
941
|
+
size,
|
|
942
|
+
viewBox: "0 0 24 24",
|
|
943
|
+
fill: "none",
|
|
944
|
+
ref: forwardRef2
|
|
945
|
+
},
|
|
946
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
947
|
+
"path",
|
|
948
|
+
{
|
|
949
|
+
fill: "currentColor",
|
|
950
|
+
fillRule: "evenodd",
|
|
951
|
+
d: "M16.3653 8.3154v2.4084h-5.3751v-2.113h3.356v-2.286c0-1.1942 1.3944-1.775 2.1787-.9075l5.1299 5.6752c.4603.5091.4603 1.3058 0 1.815l-5.1299 5.6752c-.7843.8676-2.1787.2868-2.1787-.9075v-2.0833h-3.356v-2.1129h5.3751v2.2056l3.3306-3.6846-3.3306-3.6846Z",
|
|
952
|
+
clipRule: "evenodd"
|
|
953
|
+
}
|
|
954
|
+
),
|
|
955
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
956
|
+
"path",
|
|
957
|
+
{
|
|
958
|
+
fill: "currentColor",
|
|
959
|
+
fillRule: "evenodd",
|
|
960
|
+
d: "M7.653 8.309v2.4142h5.3562v-2.1129h-3.337v-2.287c0-1.1933-1.3924-1.7746-2.1773-.9091l-5.1483 5.6767c-.4621.5096-.4621 1.3086 0 1.8182l5.1483 5.6767c.785.8655 2.1772.2842 2.1772-.909v-2.0849h3.3372v-2.1129h-5.3562v2.2119l-3.3473-3.6909 3.3473-3.691Z",
|
|
961
|
+
clipRule: "evenodd"
|
|
962
|
+
}
|
|
963
|
+
)
|
|
964
|
+
);
|
|
965
|
+
}
|
|
966
|
+
);
|
|
967
|
+
IconArrowFatLeftRight[designSystemBaseIcon.iconSymbol] = true;
|
|
968
|
+
|
|
969
|
+
const IconArrowFatLeft = react.forwardRef(
|
|
970
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
971
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
972
|
+
return react.createElement(
|
|
973
|
+
StyledIcon,
|
|
974
|
+
{
|
|
975
|
+
...props,
|
|
976
|
+
weight,
|
|
977
|
+
debug,
|
|
978
|
+
size,
|
|
979
|
+
viewBox: "0 0 24 24",
|
|
980
|
+
fill: "none",
|
|
981
|
+
ref: forwardRef2
|
|
982
|
+
},
|
|
983
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
984
|
+
"path",
|
|
985
|
+
{
|
|
986
|
+
fill: "currentColor",
|
|
987
|
+
fillRule: "evenodd",
|
|
988
|
+
d: "M12.5 19.2467v-3.2467h8v-8h-8v-3.2467l-8.0095 7.2467 8.0095 7.2467Zm2 1.69c0 1.0837-1.285 1.654-2.0886.9269l-10.902-9.8636 10.902-9.8636c.8036-.7271 2.0886-.1569 2.0886.927v2.9366h6.75c.6904 0 1.25.5596 1.25 1.25v9.5c0 .6903-.5596 1.25-1.25 1.25h-6.75v2.9367Z",
|
|
989
|
+
clipRule: "evenodd"
|
|
990
|
+
}
|
|
991
|
+
),
|
|
992
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
993
|
+
"path",
|
|
994
|
+
{
|
|
995
|
+
stroke: "currentColor",
|
|
996
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
997
|
+
d: "M3 11.9999v.0001"
|
|
998
|
+
}
|
|
999
|
+
)
|
|
1000
|
+
);
|
|
1001
|
+
}
|
|
1002
|
+
);
|
|
1003
|
+
IconArrowFatLeft[designSystemBaseIcon.iconSymbol] = true;
|
|
1004
|
+
|
|
895
1005
|
const IconArrowFatRight = react.forwardRef(
|
|
896
1006
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
897
1007
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -1483,6 +1593,76 @@ const IconArrowsSquareCounterClockwiseY = react.forwardRef(
|
|
|
1483
1593
|
);
|
|
1484
1594
|
IconArrowsSquareCounterClockwiseY[designSystemBaseIcon.iconSymbol] = true;
|
|
1485
1595
|
|
|
1596
|
+
const IconArrowsTimeBackward = react.forwardRef(
|
|
1597
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
1598
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
1599
|
+
return react.createElement(
|
|
1600
|
+
StyledIcon,
|
|
1601
|
+
{
|
|
1602
|
+
...props,
|
|
1603
|
+
weight,
|
|
1604
|
+
debug,
|
|
1605
|
+
size,
|
|
1606
|
+
viewBox: "0 0 24 24",
|
|
1607
|
+
fill: "none",
|
|
1608
|
+
ref: forwardRef2
|
|
1609
|
+
},
|
|
1610
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1611
|
+
"path",
|
|
1612
|
+
{
|
|
1613
|
+
fill: "currentColor",
|
|
1614
|
+
d: "M12.472 8.9v5.6h-1.208v-3.992c-.104.152-.488.224-.728.224h-.4v-1.032h.376c.472 0 .744-.184.824-.8h1.136ZM15.424 14.564c-1.4 0-2.08-.976-2.08-2.688v-.36c0-1.712.68-2.68 2.08-2.68h.328c1.416 0 2.088.976 2.088 2.68v.36c0 1.712-.672 2.688-2.088 2.688h-.328Zm-.872-2.328c0 .864.4 1.288.936 1.288h.216c.536 0 .928-.424.928-1.288v-1.08c0-.864-.392-1.288-.928-1.288h-.216c-.536 0-.936.424-.936 1.288v1.08Z"
|
|
1615
|
+
}
|
|
1616
|
+
),
|
|
1617
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1618
|
+
"path",
|
|
1619
|
+
{
|
|
1620
|
+
fill: "currentColor",
|
|
1621
|
+
fillRule: "evenodd",
|
|
1622
|
+
d: "M19.7744 10.2391c-.9736-3.7414-4.7958-5.9851-8.5372-5.0116-3.3416.8696-5.4885 4.0115-5.2156 7.3386l1.2713-1.2713c.3905-.3905 1.0237-.3905 1.4142 0 .3905.3906.3905 1.0237 0 1.4143l-2.7172 2.7171c-.5467.5467-1.4331.5467-1.9798 0l-2.7172-2.7171c-.3905-.3906-.3905-1.0237 0-1.4143.3905-.3905 1.0237-.3905 1.4142 0l1.3116 1.3116c-.2896-4.2327 2.459-8.207 6.7148-9.3144 4.8104-1.2517 9.7247 1.633 10.9764 6.4434 1.2518 4.8104-1.633 9.7247-6.4434 10.9765a9.0139 9.0139 0 0 1-2.2482.292c-.5523.0014-1.0012-.4451-1.0026-.9974-.0015-.5523.445-1.0012.9973-1.0026a7.0152 7.0152 0 0 0 1.7498-.2276c3.7414-.9735 5.9852-4.7958 5.0116-8.5372Z",
|
|
1623
|
+
clipRule: "evenodd"
|
|
1624
|
+
}
|
|
1625
|
+
)
|
|
1626
|
+
);
|
|
1627
|
+
}
|
|
1628
|
+
);
|
|
1629
|
+
IconArrowsTimeBackward[designSystemBaseIcon.iconSymbol] = true;
|
|
1630
|
+
|
|
1631
|
+
const IconArrowsTimeForward = react.forwardRef(
|
|
1632
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
1633
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
1634
|
+
return react.createElement(
|
|
1635
|
+
StyledIcon,
|
|
1636
|
+
{
|
|
1637
|
+
...props,
|
|
1638
|
+
weight,
|
|
1639
|
+
debug,
|
|
1640
|
+
size,
|
|
1641
|
+
viewBox: "0 0 24 24",
|
|
1642
|
+
fill: "none",
|
|
1643
|
+
ref: forwardRef2
|
|
1644
|
+
},
|
|
1645
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1646
|
+
"path",
|
|
1647
|
+
{
|
|
1648
|
+
fill: "currentColor",
|
|
1649
|
+
d: "M8.472 8.9v5.6h-1.208v-3.992c-.104.152-.488.224-.728.224h-.4v-1.032h.376c.472 0 .744-.184.824-.8h1.136ZM11.424 14.564c-1.4 0-2.08-.976-2.08-2.688v-.36c0-1.712.68-2.68 2.08-2.68h.328c1.416 0 2.088.976 2.088 2.68v.36c0 1.712-.672 2.688-2.088 2.688h-.328Zm-.872-2.328c0 .864.4 1.288.936 1.288h.216c.536 0 .928-.424.928-1.288v-1.08c0-.864-.392-1.288-.928-1.288h-.216c-.536 0-.936.424-.936 1.288v1.08Z"
|
|
1650
|
+
}
|
|
1651
|
+
),
|
|
1652
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1653
|
+
"path",
|
|
1654
|
+
{
|
|
1655
|
+
fill: "currentColor",
|
|
1656
|
+
fillRule: "evenodd",
|
|
1657
|
+
d: "M11 5c-3.866 0-7 3.134-7 7s3.134 7 7 7c.5523 0 1 .4477 1 1s-.4477 1-1 1c-4.9706 0-9-4.0294-9-9s4.0294-9 9-9 9 4.0294 9 9c0 .2035-.0068.4056-.0201.6059l1.313-1.313c.3905-.3905 1.0237-.3905 1.4142 0 .3905.3905.3905 1.0237 0 1.4142l-2.7172 2.7172c-.5467.5467-1.4331.5467-1.9799 0l-2.7171-2.7172c-.3905-.3905-.3905-1.0237 0-1.4142.3905-.3905 1.0237-.3905 1.4142 0l1.2706 1.2706a7.0952 7.0952 0 0 0 .0223-.5635c0-3.866-3.134-7-7-7Z",
|
|
1658
|
+
clipRule: "evenodd"
|
|
1659
|
+
}
|
|
1660
|
+
)
|
|
1661
|
+
);
|
|
1662
|
+
}
|
|
1663
|
+
);
|
|
1664
|
+
IconArrowsTimeForward[designSystemBaseIcon.iconSymbol] = true;
|
|
1665
|
+
|
|
1486
1666
|
const IconArticle = react.forwardRef(
|
|
1487
1667
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
1488
1668
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -1802,6 +1982,41 @@ const IconBookmark = react.forwardRef(
|
|
|
1802
1982
|
);
|
|
1803
1983
|
IconBookmark[designSystemBaseIcon.iconSymbol] = true;
|
|
1804
1984
|
|
|
1985
|
+
const IconBoxCaptions = react.forwardRef(
|
|
1986
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
1987
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
1988
|
+
return react.createElement(
|
|
1989
|
+
StyledIcon,
|
|
1990
|
+
{
|
|
1991
|
+
...props,
|
|
1992
|
+
weight,
|
|
1993
|
+
debug,
|
|
1994
|
+
size,
|
|
1995
|
+
viewBox: "0 0 24 24",
|
|
1996
|
+
fill: "none",
|
|
1997
|
+
ref: forwardRef2
|
|
1998
|
+
},
|
|
1999
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2000
|
+
"path",
|
|
2001
|
+
{
|
|
2002
|
+
fill: "currentColor",
|
|
2003
|
+
fillRule: "evenodd",
|
|
2004
|
+
d: "M2 7c0-1.6569 1.3432-3 3-3h14c1.6569 0 3 1.3431 3 3v10c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-10Zm3-1c-.5523 0-1 .4477-1 1v10c0 .5523.4477 1 1 1h14c.5523 0 1-.4477 1-1v-10c0-.5523-.4477-1-1-1h-14Z",
|
|
2005
|
+
clipRule: "evenodd"
|
|
2006
|
+
}
|
|
2007
|
+
),
|
|
2008
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2009
|
+
"path",
|
|
2010
|
+
{
|
|
2011
|
+
fill: "currentColor",
|
|
2012
|
+
d: "M15.0729 15.064c-1.576 0-2.864-.992-2.864-2.864 0-1.872 1.32-2.864 2.864-2.864 1.48 0 2.536.824 2.688 2.096h-1.496c-.072-.536-.552-.88-1.2-.88-.784 0-1.424.56-1.424 1.648 0 1.088.632 1.648 1.424 1.648.656 0 1.144-.344 1.248-.88h1.416c-.104 1.272-1.152 2.096-2.656 2.096ZM9.112 15.064c-1.576 0-2.864-.992-2.864-2.864 0-1.872 1.32-2.864 2.864-2.864 1.48 0 2.536.824 2.688 2.096h-1.496c-.072-.536-.552-.88-1.2-.88-.784 0-1.424.56-1.424 1.648 0 1.088.632 1.648 1.424 1.648.656 0 1.144-.344 1.248-.88h1.416c-.104 1.272-1.152 2.096-2.656 2.096Z"
|
|
2013
|
+
}
|
|
2014
|
+
)
|
|
2015
|
+
);
|
|
2016
|
+
}
|
|
2017
|
+
);
|
|
2018
|
+
IconBoxCaptions[designSystemBaseIcon.iconSymbol] = true;
|
|
2019
|
+
|
|
1805
2020
|
const IconBracketCurlyLeft = react.forwardRef(
|
|
1806
2021
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
1807
2022
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -3409,7 +3624,7 @@ const IconClock = react.forwardRef(
|
|
|
3409
3624
|
{
|
|
3410
3625
|
stroke: "currentColor",
|
|
3411
3626
|
strokeWidth: "var(--svg-stroke-width)",
|
|
3412
|
-
d: "M12
|
|
3627
|
+
d: "M12 11.9999v.0001"
|
|
3413
3628
|
}
|
|
3414
3629
|
)
|
|
3415
3630
|
);
|
|
@@ -3721,6 +3936,34 @@ const IconColumnsThree = react.forwardRef(
|
|
|
3721
3936
|
);
|
|
3722
3937
|
IconColumnsThree[designSystemBaseIcon.iconSymbol] = true;
|
|
3723
3938
|
|
|
3939
|
+
const IconColumns = react.forwardRef(
|
|
3940
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
3941
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
3942
|
+
return react.createElement(
|
|
3943
|
+
StyledIcon,
|
|
3944
|
+
{
|
|
3945
|
+
...props,
|
|
3946
|
+
weight,
|
|
3947
|
+
debug,
|
|
3948
|
+
size,
|
|
3949
|
+
viewBox: "0 0 24 24",
|
|
3950
|
+
fill: "none",
|
|
3951
|
+
ref: forwardRef2
|
|
3952
|
+
},
|
|
3953
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3954
|
+
"path",
|
|
3955
|
+
{
|
|
3956
|
+
fill: "currentColor",
|
|
3957
|
+
fillRule: "evenodd",
|
|
3958
|
+
d: "M5 2c-1.6568 0-3 1.3432-3 3v14c0 1.6569 1.3432 3 3 3h5c1.6569 0 3-1.3431 3-3v-3h6c1.6569 0 3-1.3431 3-3v-8c0-1.6568-1.3431-3-3-3h-14Zm6 2h-6c-.5523 0-1 .4477-1 1v14c0 .5523.4477 1 1 1h5c.5523 0 1-.4477 1-1v-15Zm2 0v10h6c.5523 0 1-.4477 1-1v-8c0-.5523-.4477-1-1-1h-6Z",
|
|
3959
|
+
clipRule: "evenodd"
|
|
3960
|
+
}
|
|
3961
|
+
)
|
|
3962
|
+
);
|
|
3963
|
+
}
|
|
3964
|
+
);
|
|
3965
|
+
IconColumns[designSystemBaseIcon.iconSymbol] = true;
|
|
3966
|
+
|
|
3724
3967
|
const IconCommentGroup = react.forwardRef(
|
|
3725
3968
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
3726
3969
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -4877,6 +5120,34 @@ const IconDiagramCardUser = react.forwardRef(
|
|
|
4877
5120
|
);
|
|
4878
5121
|
IconDiagramCardUser[designSystemBaseIcon.iconSymbol] = true;
|
|
4879
5122
|
|
|
5123
|
+
const IconDiagramming = react.forwardRef(
|
|
5124
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
5125
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
5126
|
+
return react.createElement(
|
|
5127
|
+
StyledIcon,
|
|
5128
|
+
{
|
|
5129
|
+
...props,
|
|
5130
|
+
weight,
|
|
5131
|
+
debug,
|
|
5132
|
+
size,
|
|
5133
|
+
viewBox: "0 0 24 24",
|
|
5134
|
+
fill: "none",
|
|
5135
|
+
ref: forwardRef2
|
|
5136
|
+
},
|
|
5137
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5138
|
+
"path",
|
|
5139
|
+
{
|
|
5140
|
+
fill: "currentColor",
|
|
5141
|
+
fillRule: "evenodd",
|
|
5142
|
+
d: "M13 4.5c0-1.3807 1.1193-2.5 2.5-2.5h4c1.3807 0 2.5 1.1193 2.5 2.5v4c0 1.3807-1.1193 2.5-2.5 2.5h-4c-1.3807 0-2.5-1.1193-2.5-2.5v-1h-2c-2.2091 0-4 1.7909-4 4v.5c2.419 0 4.4367 1.7178 4.9 4h6.6266l-2.1438-1.7118 1.2341-1.5768 4.3833 3.5a1.009 1.009 0 0 1 .3779.7885c0 .3073-.1392.5978-.3779.7884l-4.3833 3.4999-1.2341-1.5768 2.1434-1.7114h-6.6262c-.4633 2.2822-2.481 4-4.9 4-2.7614 0-5-2.2386-5-5 0-2.0503 1.2341-3.8124 3-4.584v-.916c0-3.3137 2.6863-6 6-6h2v-1Zm2.5-.5a.5.5 0 0 0-.5.5v4a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-4Zm-8.5 10c-1.6569 0-3 1.3431-3 3s1.3431 3 3 3 3-1.3431 3-3-1.3431-3-3-3Z",
|
|
5143
|
+
clipRule: "evenodd"
|
|
5144
|
+
}
|
|
5145
|
+
)
|
|
5146
|
+
);
|
|
5147
|
+
}
|
|
5148
|
+
);
|
|
5149
|
+
IconDiagramming[designSystemBaseIcon.iconSymbol] = true;
|
|
5150
|
+
|
|
4880
5151
|
const IconDistributeHorizontal = react.forwardRef(
|
|
4881
5152
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
4882
5153
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -4962,7 +5233,7 @@ const IconDistributeVertical = react.forwardRef(
|
|
|
4962
5233
|
);
|
|
4963
5234
|
IconDistributeVertical[designSystemBaseIcon.iconSymbol] = true;
|
|
4964
5235
|
|
|
4965
|
-
const
|
|
5236
|
+
const IconDoc = react.forwardRef(
|
|
4966
5237
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
4967
5238
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
4968
5239
|
return react.createElement(
|
|
@@ -4979,18 +5250,18 @@ const IconDollarSignCurrency = react.forwardRef(
|
|
|
4979
5250
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
4980
5251
|
"path",
|
|
4981
5252
|
{
|
|
4982
|
-
|
|
4983
|
-
|
|
4984
|
-
|
|
4985
|
-
|
|
5253
|
+
fill: "currentColor",
|
|
5254
|
+
fillRule: "evenodd",
|
|
5255
|
+
d: "M5 2c-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-14Zm-1 3c0-.5523.4477-1 1-1h14c.5523 0 1 .4477 1 1v14c0 .5523-.4477 1-1 1h-14c-.5523 0-1-.4477-1-1v-14Zm4 6c-.5523 0-1 .4477-1 1s.4477 1 1 1h8c.5523 0 1-.4477 1-1s-.4477-1-1-1h-8Zm-1-3c0-.5523.4477-1 1-1h8c.5523 0 1 .4477 1 1s-.4477 1-1 1h-8c-.5523 0-1-.4477-1-1Zm1 7c-.5523 0-1 .4477-1 1s.4477 1 1 1h5c.5523 0 1-.4477 1-1s-.4477-1-1-1h-5Z",
|
|
5256
|
+
clipRule: "evenodd"
|
|
4986
5257
|
}
|
|
4987
5258
|
)
|
|
4988
5259
|
);
|
|
4989
5260
|
}
|
|
4990
5261
|
);
|
|
4991
|
-
|
|
5262
|
+
IconDoc[designSystemBaseIcon.iconSymbol] = true;
|
|
4992
5263
|
|
|
4993
|
-
const
|
|
5264
|
+
const IconDollarSignCurrency = react.forwardRef(
|
|
4994
5265
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
4995
5266
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
4996
5267
|
return react.createElement(
|
|
@@ -5007,8 +5278,36 @@ const IconDotVoting = react.forwardRef(
|
|
|
5007
5278
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5008
5279
|
"path",
|
|
5009
5280
|
{
|
|
5010
|
-
|
|
5011
|
-
|
|
5281
|
+
stroke: "currentColor",
|
|
5282
|
+
strokeLinecap: "round",
|
|
5283
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
5284
|
+
d: "M17 8.6667c0-1.1111-1-3.3334-5-3.3334s-5 2.2223-5 3.3334c0 1.111 1 3.3333 5 3.3333m0 0c4 0 5 2.2222 5 3.3333s-1 3.3334-5 3.3334-5-2.2223-5-3.3334m5-3.3333v-8m0 8v8"
|
|
5285
|
+
}
|
|
5286
|
+
)
|
|
5287
|
+
);
|
|
5288
|
+
}
|
|
5289
|
+
);
|
|
5290
|
+
IconDollarSignCurrency[designSystemBaseIcon.iconSymbol] = true;
|
|
5291
|
+
|
|
5292
|
+
const IconDotVoting = react.forwardRef(
|
|
5293
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
5294
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
5295
|
+
return react.createElement(
|
|
5296
|
+
StyledIcon,
|
|
5297
|
+
{
|
|
5298
|
+
...props,
|
|
5299
|
+
weight,
|
|
5300
|
+
debug,
|
|
5301
|
+
size,
|
|
5302
|
+
viewBox: "0 0 24 24",
|
|
5303
|
+
fill: "none",
|
|
5304
|
+
ref: forwardRef2
|
|
5305
|
+
},
|
|
5306
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5307
|
+
"path",
|
|
5308
|
+
{
|
|
5309
|
+
fill: "currentColor",
|
|
5310
|
+
fillRule: "evenodd",
|
|
5012
5311
|
d: "M11.046 20.95a9.001 9.001 0 0 1 .954-17.95 9.0008 9.0008 0 0 1 8.953 8.072c-.15-.018-.3-.033-.451-.044-5.644-.422-9.881 3.974-9.475 9.687.006.079.012.157.02.235h-.001Zm8.631-7.95-6.672 6.673c.131-3.856 2.931-6.63 6.672-6.672v-.001Zm3.323-1c0 .333-.143.649-.378.885l-9.737 9.737a1.2566 1.2566 0 0 1-.885.378c-6.075 0-11-4.925-11-11s4.925-11 11-11 11 4.925 11 11Z",
|
|
5013
5312
|
clipRule: "evenodd"
|
|
5014
5313
|
}
|
|
@@ -5440,6 +5739,34 @@ const IconExport = react.forwardRef(
|
|
|
5440
5739
|
);
|
|
5441
5740
|
IconExport[designSystemBaseIcon.iconSymbol] = true;
|
|
5442
5741
|
|
|
5742
|
+
const IconExternal = react.forwardRef(
|
|
5743
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
5744
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
5745
|
+
return react.createElement(
|
|
5746
|
+
StyledIcon,
|
|
5747
|
+
{
|
|
5748
|
+
...props,
|
|
5749
|
+
weight,
|
|
5750
|
+
debug,
|
|
5751
|
+
size,
|
|
5752
|
+
viewBox: "0 0 24 24",
|
|
5753
|
+
fill: "none",
|
|
5754
|
+
ref: forwardRef2
|
|
5755
|
+
},
|
|
5756
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5757
|
+
"path",
|
|
5758
|
+
{
|
|
5759
|
+
fill: "currentColor",
|
|
5760
|
+
fillRule: "evenodd",
|
|
5761
|
+
d: "M6 2c-2.2091 0-4 1.7909-4 4v12c0 2.2091 1.7909 4 4 4h12c2.2091 0 4-1.7909 4-4v-12c0-2.2091-1.7909-4-4-4h-12Zm-2 4c0-1.1046.8954-2 2-2h12c1.1046 0 2 .8954 2 2v12c0 1.1046-.8954 2-2 2h-12c-1.1046 0-2-.8954-2-2v-12Zm6.0002 1.001c-.5522 0-1 .4477-1 1s.4478 1 1 1h3.5858l-6.2929 6.2929c-.3905.3905-.3905 1.0237 0 1.4142.3906.3905 1.0237.3905 1.4143 0l6.2928-6.2929v3.5858c0 .5523.4478 1 1 1 .5523 0 1-.4477 1-1v-6c0-.5523-.4477-1-1-1h-6Z",
|
|
5762
|
+
clipRule: "evenodd"
|
|
5763
|
+
}
|
|
5764
|
+
)
|
|
5765
|
+
);
|
|
5766
|
+
}
|
|
5767
|
+
);
|
|
5768
|
+
IconExternal[designSystemBaseIcon.iconSymbol] = true;
|
|
5769
|
+
|
|
5443
5770
|
const IconEyeClosedDotsFourFrameBroken = react.forwardRef(
|
|
5444
5771
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
5445
5772
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -8277,6 +8604,14 @@ const IconMonitorPause = react.forwardRef(
|
|
|
8277
8604
|
strokeWidth: "var(--svg-stroke-width)",
|
|
8278
8605
|
d: "M9 21h6m-5-12v4m4-4v4m-10-9h16c.5523 0 1 .4477 1 1v12c0 .5523-.4477 1-1 1h-16c-.5523 0-1-.4477-1-1v-12c0-.5523.4477-1 1-1Z"
|
|
8279
8606
|
}
|
|
8607
|
+
),
|
|
8608
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
8609
|
+
"path",
|
|
8610
|
+
{
|
|
8611
|
+
stroke: "currentColor",
|
|
8612
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
8613
|
+
d: "M14 12v.0001"
|
|
8614
|
+
}
|
|
8280
8615
|
)
|
|
8281
8616
|
);
|
|
8282
8617
|
}
|
|
@@ -8313,6 +8648,14 @@ const IconMonitorPlay = react.forwardRef(
|
|
|
8313
8648
|
fill: "currentColor",
|
|
8314
8649
|
d: "M15.376 10.584c.2968.1979.2968.6341 0 .832l-4.5987 3.0658c-.3322.2215-.7773-.0167-.7773-.4161v-6.1314c0-.3994.4451-.6376.7774-.416l4.5986 3.0657Z"
|
|
8315
8650
|
}
|
|
8651
|
+
),
|
|
8652
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
8653
|
+
"path",
|
|
8654
|
+
{
|
|
8655
|
+
stroke: "currentColor",
|
|
8656
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
8657
|
+
d: "M12 11v.0001"
|
|
8658
|
+
}
|
|
8316
8659
|
)
|
|
8317
8660
|
);
|
|
8318
8661
|
}
|
|
@@ -8343,7 +8686,15 @@ const IconMonitorStop = react.forwardRef(
|
|
|
8343
8686
|
d: "M9 21h6m-11-3h16c.5523 0 1-.4477 1-1v-12c0-.5523-.4477-1-1-1h-16c-.5523 0-1 .4477-1 1v12c0 .5523.4477 1 1 1Z"
|
|
8344
8687
|
}
|
|
8345
8688
|
),
|
|
8346
|
-
/* @__PURE__ */ jsxRuntime.jsx("rect", { width: 6, height: 6, x: 9, y: 8, fill: "currentColor", rx: 1 })
|
|
8689
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { width: 6, height: 6, x: 9, y: 8, fill: "currentColor", rx: 1 }),
|
|
8690
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
8691
|
+
"path",
|
|
8692
|
+
{
|
|
8693
|
+
stroke: "currentColor",
|
|
8694
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
8695
|
+
d: "M12 11v.0001"
|
|
8696
|
+
}
|
|
8697
|
+
)
|
|
8347
8698
|
);
|
|
8348
8699
|
}
|
|
8349
8700
|
);
|
|
@@ -9995,9 +10346,258 @@ const IconPresentationLink = react.forwardRef(
|
|
|
9995
10346
|
);
|
|
9996
10347
|
}
|
|
9997
10348
|
);
|
|
9998
|
-
IconPresentationLink[designSystemBaseIcon.iconSymbol] = true;
|
|
10349
|
+
IconPresentationLink[designSystemBaseIcon.iconSymbol] = true;
|
|
10350
|
+
|
|
10351
|
+
const IconPresentationNumberOne = react.forwardRef(
|
|
10352
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
10353
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
10354
|
+
return react.createElement(
|
|
10355
|
+
StyledIcon,
|
|
10356
|
+
{
|
|
10357
|
+
...props,
|
|
10358
|
+
weight,
|
|
10359
|
+
debug,
|
|
10360
|
+
size,
|
|
10361
|
+
viewBox: "0 0 24 24",
|
|
10362
|
+
fill: "none",
|
|
10363
|
+
ref: forwardRef2
|
|
10364
|
+
},
|
|
10365
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10366
|
+
"path",
|
|
10367
|
+
{
|
|
10368
|
+
stroke: "currentColor",
|
|
10369
|
+
strokeLinecap: "round",
|
|
10370
|
+
strokeLinejoin: "round",
|
|
10371
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
10372
|
+
d: "M12 4h-9v14h5m4-14h9v14h-5m-4-14v-2m-4 16-2 4m2-4h8m0 0 2 4m-8-13 2-1v6m0 0h-2m2 0h2"
|
|
10373
|
+
}
|
|
10374
|
+
)
|
|
10375
|
+
);
|
|
10376
|
+
}
|
|
10377
|
+
);
|
|
10378
|
+
IconPresentationNumberOne[designSystemBaseIcon.iconSymbol] = true;
|
|
10379
|
+
|
|
10380
|
+
const IconPresentationPlay = react.forwardRef(
|
|
10381
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
10382
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
10383
|
+
return react.createElement(
|
|
10384
|
+
StyledIcon,
|
|
10385
|
+
{
|
|
10386
|
+
...props,
|
|
10387
|
+
weight,
|
|
10388
|
+
debug,
|
|
10389
|
+
size,
|
|
10390
|
+
viewBox: "0 0 24 24",
|
|
10391
|
+
fill: "none",
|
|
10392
|
+
ref: forwardRef2
|
|
10393
|
+
},
|
|
10394
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10395
|
+
"path",
|
|
10396
|
+
{
|
|
10397
|
+
stroke: "currentColor",
|
|
10398
|
+
strokeLinecap: "round",
|
|
10399
|
+
strokeLinejoin: "round",
|
|
10400
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
10401
|
+
d: "M12 4h-9v14h5m4-14h9v14h-5m-4-14v-2m-4 16-2 4m2-4h8m0 0 2 4"
|
|
10402
|
+
}
|
|
10403
|
+
),
|
|
10404
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10405
|
+
"path",
|
|
10406
|
+
{
|
|
10407
|
+
fill: "currentColor",
|
|
10408
|
+
d: "M14.2854 10.5713c.3237.1942.3237.6632 0 .8574l-3.5282 2.117c-.3332.1999-.7572-.0401-.7572-.4288v-4.2338c0-.3887.424-.6287.7572-.4288l3.5282 2.117Z"
|
|
10409
|
+
}
|
|
10410
|
+
)
|
|
10411
|
+
);
|
|
10412
|
+
}
|
|
10413
|
+
);
|
|
10414
|
+
IconPresentationPlay[designSystemBaseIcon.iconSymbol] = true;
|
|
10415
|
+
|
|
10416
|
+
const IconPresentationPlus = react.forwardRef(
|
|
10417
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
10418
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
10419
|
+
return react.createElement(
|
|
10420
|
+
StyledIcon,
|
|
10421
|
+
{
|
|
10422
|
+
...props,
|
|
10423
|
+
weight,
|
|
10424
|
+
debug,
|
|
10425
|
+
size,
|
|
10426
|
+
viewBox: "0 0 24 24",
|
|
10427
|
+
fill: "none",
|
|
10428
|
+
ref: forwardRef2
|
|
10429
|
+
},
|
|
10430
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10431
|
+
"path",
|
|
10432
|
+
{
|
|
10433
|
+
stroke: "currentColor",
|
|
10434
|
+
strokeLinecap: "round",
|
|
10435
|
+
strokeLinejoin: "round",
|
|
10436
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
10437
|
+
d: "M12 4h-9v14h5m4-14h9v14h-5m-4-14v-2m-4 16-2 4m2-4h8m0 0 2 4m-9-11h3m0 0h3m-3 0v-3m0 3v3"
|
|
10438
|
+
}
|
|
10439
|
+
)
|
|
10440
|
+
);
|
|
10441
|
+
}
|
|
10442
|
+
);
|
|
10443
|
+
IconPresentationPlus[designSystemBaseIcon.iconSymbol] = true;
|
|
10444
|
+
|
|
10445
|
+
const IconPrevious = react.forwardRef(
|
|
10446
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
10447
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
10448
|
+
return react.createElement(
|
|
10449
|
+
StyledIcon,
|
|
10450
|
+
{
|
|
10451
|
+
...props,
|
|
10452
|
+
weight,
|
|
10453
|
+
debug,
|
|
10454
|
+
size,
|
|
10455
|
+
viewBox: "0 0 24 24",
|
|
10456
|
+
fill: "none",
|
|
10457
|
+
ref: forwardRef2
|
|
10458
|
+
},
|
|
10459
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10460
|
+
"path",
|
|
10461
|
+
{
|
|
10462
|
+
fill: "currentColor",
|
|
10463
|
+
d: "m8.4638 10.7071 9.4112-5.536c.9999-.5881 2.2605.1328 2.2605 1.293v11.0719c0 1.1601-1.2606 1.8811-2.2605 1.2929l-9.4112-5.536c-.986-.58-.986-2.0058 0-2.5858ZM4 5c0-.5523.4477-1 1-1s1 .4477 1 1v14c0 .5523-.4477 1-1 1s-1-.4477-1-1v-14Z"
|
|
10464
|
+
}
|
|
10465
|
+
)
|
|
10466
|
+
);
|
|
10467
|
+
}
|
|
10468
|
+
);
|
|
10469
|
+
IconPrevious[designSystemBaseIcon.iconSymbol] = true;
|
|
10470
|
+
|
|
10471
|
+
const IconProhibit = react.forwardRef(
|
|
10472
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
10473
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
10474
|
+
return react.createElement(
|
|
10475
|
+
StyledIcon,
|
|
10476
|
+
{
|
|
10477
|
+
...props,
|
|
10478
|
+
weight,
|
|
10479
|
+
debug,
|
|
10480
|
+
size,
|
|
10481
|
+
viewBox: "0 0 24 24",
|
|
10482
|
+
fill: "none",
|
|
10483
|
+
ref: forwardRef2
|
|
10484
|
+
},
|
|
10485
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10486
|
+
"path",
|
|
10487
|
+
{
|
|
10488
|
+
stroke: "currentColor",
|
|
10489
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
10490
|
+
d: "m7.3333 16.6667 9.3334-9.3334m2.3333 4.6667c0 3.866-3.134 7-7 7-1.9399 0-3.6956-.7891-4.9634-2.0639-1.2587-1.2657-2.0366-3.01-2.0366-4.9361 0-3.866 3.134-7 7-7 1.8641 0 3.558.7287 4.8125 1.9167 1.3472 1.2758 2.1875 3.0814 2.1875 5.0833ZM12 12v.0001"
|
|
10491
|
+
}
|
|
10492
|
+
)
|
|
10493
|
+
);
|
|
10494
|
+
}
|
|
10495
|
+
);
|
|
10496
|
+
IconProhibit[designSystemBaseIcon.iconSymbol] = true;
|
|
10497
|
+
|
|
10498
|
+
const IconProtoButton = react.forwardRef(
|
|
10499
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
10500
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
10501
|
+
return react.createElement(
|
|
10502
|
+
StyledIcon,
|
|
10503
|
+
{
|
|
10504
|
+
...props,
|
|
10505
|
+
weight,
|
|
10506
|
+
debug,
|
|
10507
|
+
size,
|
|
10508
|
+
viewBox: "0 0 24 24",
|
|
10509
|
+
fill: "none",
|
|
10510
|
+
ref: forwardRef2
|
|
10511
|
+
},
|
|
10512
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10513
|
+
"path",
|
|
10514
|
+
{
|
|
10515
|
+
fill: "currentColor",
|
|
10516
|
+
fillRule: "evenodd",
|
|
10517
|
+
d: "M2 9c0-1.6569 1.3432-3 3-3h14c1.6569 0 3 1.3431 3 3v5h-2v-5c0-.5523-.4477-1-1-1h-14c-.5523 0-1 .4477-1 1v6c0 .5523.4477 1 1 1h5v2h-5c-1.6568 0-3-1.3431-3-3v-6Z",
|
|
10518
|
+
clipRule: "evenodd"
|
|
10519
|
+
}
|
|
10520
|
+
),
|
|
10521
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10522
|
+
"path",
|
|
10523
|
+
{
|
|
10524
|
+
fill: "currentColor",
|
|
10525
|
+
fillRule: "evenodd",
|
|
10526
|
+
d: "M12.6418 10.1187c.4172-.2073.9507-.1485 1.316.2243l5.6609 5.7788c.3885.3966.4467.93.3215 1.3399-.1252.4098-.4983.8699-1.1233.9239l-1.762.1522.7829 2.115c.1917.518-.0727 1.0933-.5906 1.285-.518.1917-1.0933-.0727-1.285-.5906l-.7077-1.9118-1.0636 1.0616c-.415.4143-1.007.4722-1.4693.239-.4447-.2242-.7216-.6838-.7216-1.191v-8.3813c0-.4393.2425-.8467.6418-1.045Zm1.3582 3.1255v4.6175l.8399-.8383a1.2761 1.2761 0 0 1 .7914-.3701l1.575-.136-3.2063-3.2731Z",
|
|
10527
|
+
clipRule: "evenodd"
|
|
10528
|
+
}
|
|
10529
|
+
)
|
|
10530
|
+
);
|
|
10531
|
+
}
|
|
10532
|
+
);
|
|
10533
|
+
IconProtoButton[designSystemBaseIcon.iconSymbol] = true;
|
|
10534
|
+
|
|
10535
|
+
const IconProtoCheckbox = react.forwardRef(
|
|
10536
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
10537
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
10538
|
+
return react.createElement(
|
|
10539
|
+
StyledIcon,
|
|
10540
|
+
{
|
|
10541
|
+
...props,
|
|
10542
|
+
weight,
|
|
10543
|
+
debug,
|
|
10544
|
+
size,
|
|
10545
|
+
viewBox: "0 0 24 24",
|
|
10546
|
+
fill: "none",
|
|
10547
|
+
ref: forwardRef2
|
|
10548
|
+
},
|
|
10549
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10550
|
+
"path",
|
|
10551
|
+
{
|
|
10552
|
+
fill: "currentColor",
|
|
10553
|
+
fillRule: "evenodd",
|
|
10554
|
+
d: "M5 8c0-1.6569 1.3431-3 3-3h8c1.6569 0 3 1.3431 3 3v8c0 1.6569-1.3431 3-3 3h-8c-1.6569 0-3-1.3431-3-3v-8Zm3-1c-.5523 0-1 .4477-1 1v8c0 .5523.4477 1 1 1h8c.5523 0 1-.4477 1-1v-8c0-.5523-.4477-1-1-1h-8Zm7.1352 2.2276c.4265.3508.488.981.1372 1.4076l-2.6716 3.2486c-.7201.8756-2.0605.8756-2.7805 0l-1.0927-1.3286c-.3508-.4266-.2893-1.0568.1372-1.4076.4266-.3508 1.0568-.2893 1.4076.1372l.9381 1.1408 2.5171-3.0608c.3508-.4265.981-.488 1.4076-.1372Z",
|
|
10555
|
+
clipRule: "evenodd"
|
|
10556
|
+
}
|
|
10557
|
+
)
|
|
10558
|
+
);
|
|
10559
|
+
}
|
|
10560
|
+
);
|
|
10561
|
+
IconProtoCheckbox[designSystemBaseIcon.iconSymbol] = true;
|
|
10562
|
+
|
|
10563
|
+
const IconProtoDropdown = react.forwardRef(
|
|
10564
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
10565
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
10566
|
+
return react.createElement(
|
|
10567
|
+
StyledIcon,
|
|
10568
|
+
{
|
|
10569
|
+
...props,
|
|
10570
|
+
weight,
|
|
10571
|
+
debug,
|
|
10572
|
+
size,
|
|
10573
|
+
viewBox: "0 0 24 24",
|
|
10574
|
+
fill: "none",
|
|
10575
|
+
ref: forwardRef2
|
|
10576
|
+
},
|
|
10577
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10578
|
+
"path",
|
|
10579
|
+
{
|
|
10580
|
+
fill: "currentColor",
|
|
10581
|
+
fillRule: "evenodd",
|
|
10582
|
+
d: "M2 7c0-1.6569 1.3432-3 3-3h14c1.6569 0 3 1.3431 3 3v10c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-10Zm3-1c-.5523 0-1 .4477-1 1v10c0 .5523.4477 1 1 1h14c.5523 0 1-.4477 1-1v-10c0-.5523-.4477-1-1-1h-14Z",
|
|
10583
|
+
clipRule: "evenodd"
|
|
10584
|
+
}
|
|
10585
|
+
),
|
|
10586
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10587
|
+
"path",
|
|
10588
|
+
{
|
|
10589
|
+
fill: "currentColor",
|
|
10590
|
+
fillRule: "evenodd",
|
|
10591
|
+
d: "M11.2191 10.8753c.345-.4313.9743-.5012 1.4056-.1562l1.8753 1.5003 1.8753-1.5003c.4313-.345 1.0606-.2751 1.4056.1562s.2751 1.0606-.1562 1.4056l-2.1877 1.7501a1.4998 1.4998 0 0 1-1.874 0l-2.1877-1.7501c-.4313-.345-.5012-.9743-.1562-1.4056Z",
|
|
10592
|
+
clipRule: "evenodd"
|
|
10593
|
+
}
|
|
10594
|
+
)
|
|
10595
|
+
);
|
|
10596
|
+
}
|
|
10597
|
+
);
|
|
10598
|
+
IconProtoDropdown[designSystemBaseIcon.iconSymbol] = true;
|
|
9999
10599
|
|
|
10000
|
-
const
|
|
10600
|
+
const IconProtoInput = react.forwardRef(
|
|
10001
10601
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
10002
10602
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
10003
10603
|
return react.createElement(
|
|
@@ -10014,19 +10614,27 @@ const IconPresentationNumberOne = react.forwardRef(
|
|
|
10014
10614
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10015
10615
|
"path",
|
|
10016
10616
|
{
|
|
10017
|
-
|
|
10018
|
-
|
|
10019
|
-
|
|
10020
|
-
|
|
10021
|
-
|
|
10617
|
+
fill: "currentColor",
|
|
10618
|
+
fillRule: "evenodd",
|
|
10619
|
+
d: "M2 7c0-1.6569 1.3432-3 3-3h14c1.6569 0 3 1.3431 3 3v10c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-10Zm3-1c-.5523 0-1 .4477-1 1v10c0 .5523.4477 1 1 1h14c.5523 0 1-.4477 1-1v-10c0-.5523-.4477-1-1-1h-14Z",
|
|
10620
|
+
clipRule: "evenodd"
|
|
10621
|
+
}
|
|
10622
|
+
),
|
|
10623
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10624
|
+
"path",
|
|
10625
|
+
{
|
|
10626
|
+
fill: "currentColor",
|
|
10627
|
+
fillRule: "evenodd",
|
|
10628
|
+
d: "M7 8c.5523 0 1 .4477 1 1v6c0 .5523-.4477 1-1 1s-1-.4477-1-1v-6c0-.5523.4477-1 1-1Z",
|
|
10629
|
+
clipRule: "evenodd"
|
|
10022
10630
|
}
|
|
10023
10631
|
)
|
|
10024
10632
|
);
|
|
10025
10633
|
}
|
|
10026
10634
|
);
|
|
10027
|
-
|
|
10635
|
+
IconProtoInput[designSystemBaseIcon.iconSymbol] = true;
|
|
10028
10636
|
|
|
10029
|
-
const
|
|
10637
|
+
const IconProtoNumber = react.forwardRef(
|
|
10030
10638
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
10031
10639
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
10032
10640
|
return react.createElement(
|
|
@@ -10043,26 +10651,27 @@ const IconPresentationPlay = react.forwardRef(
|
|
|
10043
10651
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10044
10652
|
"path",
|
|
10045
10653
|
{
|
|
10046
|
-
|
|
10047
|
-
|
|
10048
|
-
|
|
10049
|
-
|
|
10050
|
-
d: "M12 4h-9v14h5m4-14h9v14h-5m-4-14v-2m-4 16-2 4m2-4h8m0 0 2 4"
|
|
10654
|
+
fill: "currentColor",
|
|
10655
|
+
fillRule: "evenodd",
|
|
10656
|
+
d: "M2 7c0-1.6569 1.3432-3 3-3h14c1.6569 0 3 1.3431 3 3v10c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-10Zm3-1c-.5523 0-1 .4477-1 1v10c0 .5523.4477 1 1 1h14c.5523 0 1-.4477 1-1v-10c0-.5523-.4477-1-1-1h-14Z",
|
|
10657
|
+
clipRule: "evenodd"
|
|
10051
10658
|
}
|
|
10052
10659
|
),
|
|
10053
10660
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10054
10661
|
"path",
|
|
10055
10662
|
{
|
|
10056
10663
|
fill: "currentColor",
|
|
10057
|
-
|
|
10664
|
+
fillRule: "evenodd",
|
|
10665
|
+
d: "M11.2191 12.8753c.345-.4313.9743-.5012 1.4056-.1562l1.8753 1.5003 1.8753-1.5003c.4313-.345 1.0606-.2751 1.4056.1562s.2751 1.0606-.1562 1.4056l-2.1877 1.7501a1.4998 1.4998 0 0 1-1.874 0l-2.1877-1.7501c-.4313-.345-.5012-.9743-.1562-1.4056ZM14.5 9.7806l1.8753 1.5003c.4313.345 1.0606.2751 1.4056-.1562s.2751-1.0606-.1562-1.4056l-2.1877-1.75a1.4999 1.4999 0 0 0-1.874 0l-2.1877 1.75c-.4313.345-.5012.9743-.1562 1.4056.345.4313.9743.5012 1.4056.1562l1.8753-1.5003Z",
|
|
10666
|
+
clipRule: "evenodd"
|
|
10058
10667
|
}
|
|
10059
10668
|
)
|
|
10060
10669
|
);
|
|
10061
10670
|
}
|
|
10062
10671
|
);
|
|
10063
|
-
|
|
10672
|
+
IconProtoNumber[designSystemBaseIcon.iconSymbol] = true;
|
|
10064
10673
|
|
|
10065
|
-
const
|
|
10674
|
+
const IconProtoRadio = react.forwardRef(
|
|
10066
10675
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
10067
10676
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
10068
10677
|
return react.createElement(
|
|
@@ -10079,19 +10688,25 @@ const IconPresentationPlus = react.forwardRef(
|
|
|
10079
10688
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10080
10689
|
"path",
|
|
10081
10690
|
{
|
|
10082
|
-
|
|
10083
|
-
|
|
10084
|
-
|
|
10085
|
-
|
|
10086
|
-
|
|
10691
|
+
fill: "currentColor",
|
|
10692
|
+
fillRule: "evenodd",
|
|
10693
|
+
d: "M12 17c2.7614 0 5-2.2386 5-5s-2.2386-5-5-5-5 2.2386-5 5 2.2386 5 5 5Zm0 2c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7Z",
|
|
10694
|
+
clipRule: "evenodd"
|
|
10695
|
+
}
|
|
10696
|
+
),
|
|
10697
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10698
|
+
"path",
|
|
10699
|
+
{
|
|
10700
|
+
fill: "currentColor",
|
|
10701
|
+
d: "M15 12c0 1.6569-1.3431 3-3 3s-3-1.3431-3-3 1.3431-3 3-3 3 1.3431 3 3Z"
|
|
10087
10702
|
}
|
|
10088
10703
|
)
|
|
10089
10704
|
);
|
|
10090
10705
|
}
|
|
10091
10706
|
);
|
|
10092
|
-
|
|
10707
|
+
IconProtoRadio[designSystemBaseIcon.iconSymbol] = true;
|
|
10093
10708
|
|
|
10094
|
-
const
|
|
10709
|
+
const IconProtoSlider = react.forwardRef(
|
|
10095
10710
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
10096
10711
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
10097
10712
|
return react.createElement(
|
|
@@ -10109,15 +10724,22 @@ const IconPrevious = react.forwardRef(
|
|
|
10109
10724
|
"path",
|
|
10110
10725
|
{
|
|
10111
10726
|
fill: "currentColor",
|
|
10112
|
-
d: "
|
|
10727
|
+
d: "M15 12c0 1.6569-1.3431 3-3 3s-3-1.3431-3-3 1.3431-3 3-3 3 1.3431 3 3Z"
|
|
10728
|
+
}
|
|
10729
|
+
),
|
|
10730
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10731
|
+
"path",
|
|
10732
|
+
{
|
|
10733
|
+
fill: "currentColor",
|
|
10734
|
+
d: "M2 12c0-.5523.4477-1 1-1h7v2h-7c-.5523 0-1-.4477-1-1ZM17 11h4c.5523 0 1 .4477 1 1"
|
|
10113
10735
|
}
|
|
10114
10736
|
)
|
|
10115
10737
|
);
|
|
10116
10738
|
}
|
|
10117
10739
|
);
|
|
10118
|
-
|
|
10740
|
+
IconProtoSlider[designSystemBaseIcon.iconSymbol] = true;
|
|
10119
10741
|
|
|
10120
|
-
const
|
|
10742
|
+
const IconPrototype = react.forwardRef(
|
|
10121
10743
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
10122
10744
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
10123
10745
|
return react.createElement(
|
|
@@ -10134,15 +10756,16 @@ const IconProhibit = react.forwardRef(
|
|
|
10134
10756
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10135
10757
|
"path",
|
|
10136
10758
|
{
|
|
10137
|
-
|
|
10138
|
-
|
|
10139
|
-
d: "
|
|
10759
|
+
fill: "currentColor",
|
|
10760
|
+
fillRule: "evenodd",
|
|
10761
|
+
d: "M8 2c-1.6569 0-3 1.3432-3 3v14c0 1.6569 1.3431 3 3 3h8c1.6569 0 3-1.3431 3-3v-14c0-1.6568-1.3431-3-3-3h-8Zm-1 3c0-.5523.4477-1 1-1h8c.5523 0 1 .4477 1 1v14c0 .5523-.4477 1-1 1h-8c-.5523 0-1-.4477-1-1v-14Zm4 1c-.5523 0-1 .4477-1 1s.4477 1 1 1h2c.5523 0 1-.4477 1-1s-.4477-1-1-1h-2Z",
|
|
10762
|
+
clipRule: "evenodd"
|
|
10140
10763
|
}
|
|
10141
10764
|
)
|
|
10142
10765
|
);
|
|
10143
10766
|
}
|
|
10144
10767
|
);
|
|
10145
|
-
|
|
10768
|
+
IconPrototype[designSystemBaseIcon.iconSymbol] = true;
|
|
10146
10769
|
|
|
10147
10770
|
const IconPushPinFilled = react.forwardRef(
|
|
10148
10771
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
@@ -10391,6 +11014,34 @@ const IconRectangleDashLines = react.forwardRef(
|
|
|
10391
11014
|
);
|
|
10392
11015
|
IconRectangleDashLines[designSystemBaseIcon.iconSymbol] = true;
|
|
10393
11016
|
|
|
11017
|
+
const IconRectangleDotLarge = react.forwardRef(
|
|
11018
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
11019
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
11020
|
+
return react.createElement(
|
|
11021
|
+
StyledIcon,
|
|
11022
|
+
{
|
|
11023
|
+
...props,
|
|
11024
|
+
weight,
|
|
11025
|
+
debug,
|
|
11026
|
+
size,
|
|
11027
|
+
viewBox: "0 0 24 24",
|
|
11028
|
+
fill: "none",
|
|
11029
|
+
ref: forwardRef2
|
|
11030
|
+
},
|
|
11031
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
11032
|
+
"path",
|
|
11033
|
+
{
|
|
11034
|
+
fill: "currentColor",
|
|
11035
|
+
fillRule: "evenodd",
|
|
11036
|
+
d: "M5 4c-1.6568 0-3 1.3431-3 3v10c0 1.6569 1.3432 3 3 3h14c1.6569 0 3-1.3431 3-3v-10c0-1.6569-1.3431-3-3-3h-14Zm-1 3c0-.5523.4477-1 1-1h14c.5523 0 1 .4477 1 1v10c0 .5523-.4477 1-1 1h-14c-.5523 0-1-.4477-1-1v-10Zm11 8c2.2091 0 4-1.7909 4-4 0-2.2091-1.7909-4-4-4-2.2091 0-4 1.7909-4 4 0 2.2091 1.7909 4 4 4Z",
|
|
11037
|
+
clipRule: "evenodd"
|
|
11038
|
+
}
|
|
11039
|
+
)
|
|
11040
|
+
);
|
|
11041
|
+
}
|
|
11042
|
+
);
|
|
11043
|
+
IconRectangleDotLarge[designSystemBaseIcon.iconSymbol] = true;
|
|
11044
|
+
|
|
10394
11045
|
const IconRectangleDotLinePen = react.forwardRef(
|
|
10395
11046
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
10396
11047
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -10436,6 +11087,62 @@ const IconRectangleDotLinePen = react.forwardRef(
|
|
|
10436
11087
|
);
|
|
10437
11088
|
IconRectangleDotLinePen[designSystemBaseIcon.iconSymbol] = true;
|
|
10438
11089
|
|
|
11090
|
+
const IconRectangleDotMedium = react.forwardRef(
|
|
11091
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
11092
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
11093
|
+
return react.createElement(
|
|
11094
|
+
StyledIcon,
|
|
11095
|
+
{
|
|
11096
|
+
...props,
|
|
11097
|
+
weight,
|
|
11098
|
+
debug,
|
|
11099
|
+
size,
|
|
11100
|
+
viewBox: "0 0 24 24",
|
|
11101
|
+
fill: "none",
|
|
11102
|
+
ref: forwardRef2
|
|
11103
|
+
},
|
|
11104
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
11105
|
+
"path",
|
|
11106
|
+
{
|
|
11107
|
+
fill: "currentColor",
|
|
11108
|
+
fillRule: "evenodd",
|
|
11109
|
+
d: "M5 4c-1.6568 0-3 1.3431-3 3v10c0 1.6569 1.3432 3 3 3h14c1.6569 0 3-1.3431 3-3v-10c0-1.6569-1.3431-3-3-3h-14Zm-1 3c0-.5523.4477-1 1-1h14c.5523 0 1 .4477 1 1v10c0 .5523-.4477 1-1 1h-14c-.5523 0-1-.4477-1-1v-10Zm12 6c1.6569 0 3-1.3431 3-3s-1.3431-3-3-3-3 1.3431-3 3 1.3431 3 3 3Z",
|
|
11110
|
+
clipRule: "evenodd"
|
|
11111
|
+
}
|
|
11112
|
+
)
|
|
11113
|
+
);
|
|
11114
|
+
}
|
|
11115
|
+
);
|
|
11116
|
+
IconRectangleDotMedium[designSystemBaseIcon.iconSymbol] = true;
|
|
11117
|
+
|
|
11118
|
+
const IconRectangleDotSmall = react.forwardRef(
|
|
11119
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
11120
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
11121
|
+
return react.createElement(
|
|
11122
|
+
StyledIcon,
|
|
11123
|
+
{
|
|
11124
|
+
...props,
|
|
11125
|
+
weight,
|
|
11126
|
+
debug,
|
|
11127
|
+
size,
|
|
11128
|
+
viewBox: "0 0 24 24",
|
|
11129
|
+
fill: "none",
|
|
11130
|
+
ref: forwardRef2
|
|
11131
|
+
},
|
|
11132
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
11133
|
+
"path",
|
|
11134
|
+
{
|
|
11135
|
+
fill: "currentColor",
|
|
11136
|
+
fillRule: "evenodd",
|
|
11137
|
+
d: "M5 4c-1.6568 0-3 1.3431-3 3v10c0 1.6569 1.3432 3 3 3h14c1.6569 0 3-1.3431 3-3v-10c0-1.6569-1.3431-3-3-3h-14Zm-1 3c0-.5523.4477-1 1-1h14c.5523 0 1 .4477 1 1v10c0 .5523-.4477 1-1 1h-14c-.5523 0-1-.4477-1-1v-10Zm13 4c1.1046 0 2-.8954 2-2s-.8954-2-2-2-2 .8954-2 2 .8954 2 2 2Z",
|
|
11138
|
+
clipRule: "evenodd"
|
|
11139
|
+
}
|
|
11140
|
+
)
|
|
11141
|
+
);
|
|
11142
|
+
}
|
|
11143
|
+
);
|
|
11144
|
+
IconRectangleDotSmall[designSystemBaseIcon.iconSymbol] = true;
|
|
11145
|
+
|
|
10439
11146
|
const IconRectangleFrame2Lines = react.forwardRef(
|
|
10440
11147
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
10441
11148
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -11354,6 +12061,34 @@ const IconShieldCheck = react.forwardRef(
|
|
|
11354
12061
|
);
|
|
11355
12062
|
IconShieldCheck[designSystemBaseIcon.iconSymbol] = true;
|
|
11356
12063
|
|
|
12064
|
+
const IconShieldLockFilled = react.forwardRef(
|
|
12065
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
12066
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
12067
|
+
return react.createElement(
|
|
12068
|
+
StyledIcon,
|
|
12069
|
+
{
|
|
12070
|
+
...props,
|
|
12071
|
+
weight,
|
|
12072
|
+
debug,
|
|
12073
|
+
size,
|
|
12074
|
+
viewBox: "0 0 24 24",
|
|
12075
|
+
fill: "none",
|
|
12076
|
+
ref: forwardRef2
|
|
12077
|
+
},
|
|
12078
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12079
|
+
"path",
|
|
12080
|
+
{
|
|
12081
|
+
fill: "currentColor",
|
|
12082
|
+
fillRule: "evenodd",
|
|
12083
|
+
d: "m21 5.307-9-3.375-9 3.375v7.7375a7.6376 7.6376 0 0 0 1.8387 4.9706 14.2744 14.2744 0 0 0 3.4941 2.9508l2.6382 1.5829c.6334.38 1.4246.38 2.058 0l2.6382-1.5829a14.2757 14.2757 0 0 0 3.4941-2.9508 7.6378 7.6378 0 0 0 1.8387-4.9706v-7.7375Zm-10 4.193c0-.5523.4477-1 1-1s1 .4477 1 1v1.5h-2v-1.5Zm-2 1.5v-1.5c0-1.6569 1.3431-3 3-3s3 1.3431 3 3v1.5c.5523 0 1 .4477 1 1v3c0 .5523-.4477 1-1 1h-6c-.5523 0-1-.4477-1-1v-3c0-.5523.4477-1 1-1Z",
|
|
12084
|
+
clipRule: "evenodd"
|
|
12085
|
+
}
|
|
12086
|
+
)
|
|
12087
|
+
);
|
|
12088
|
+
}
|
|
12089
|
+
);
|
|
12090
|
+
IconShieldLockFilled[designSystemBaseIcon.iconSymbol] = true;
|
|
12091
|
+
|
|
11357
12092
|
const IconShieldLock = react.forwardRef(
|
|
11358
12093
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
11359
12094
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -11613,6 +12348,34 @@ const IconSingleSparksFilled = react.forwardRef(
|
|
|
11613
12348
|
);
|
|
11614
12349
|
IconSingleSparksFilled[designSystemBaseIcon.iconSymbol] = true;
|
|
11615
12350
|
|
|
12351
|
+
const IconSlide = react.forwardRef(
|
|
12352
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
12353
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
12354
|
+
return react.createElement(
|
|
12355
|
+
StyledIcon,
|
|
12356
|
+
{
|
|
12357
|
+
...props,
|
|
12358
|
+
weight,
|
|
12359
|
+
debug,
|
|
12360
|
+
size,
|
|
12361
|
+
viewBox: "0 0 24 24",
|
|
12362
|
+
fill: "none",
|
|
12363
|
+
ref: forwardRef2
|
|
12364
|
+
},
|
|
12365
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12366
|
+
"path",
|
|
12367
|
+
{
|
|
12368
|
+
fill: "currentColor",
|
|
12369
|
+
fillRule: "evenodd",
|
|
12370
|
+
d: "M5 2c-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-14Zm-1 3c0-.5523.4477-1 1-1h14c.5523 0 1 .4477 1 1v14c0 .5523-.4477 1-1 1h-14c-.5523 0-1-.4477-1-1v-14Zm7.166 3.7774 3.8979 2.5986c.4453.2968.4453.9512 0 1.248l-3.8979 2.5987c-.4984.3322-1.166-.0251-1.166-.6241v-5.1972c0-.599.6676-.9563 1.166-.624Z",
|
|
12371
|
+
clipRule: "evenodd"
|
|
12372
|
+
}
|
|
12373
|
+
)
|
|
12374
|
+
);
|
|
12375
|
+
}
|
|
12376
|
+
);
|
|
12377
|
+
IconSlide[designSystemBaseIcon.iconSymbol] = true;
|
|
12378
|
+
|
|
11616
12379
|
const IconSlidersX = react.forwardRef(
|
|
11617
12380
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
11618
12381
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -12347,7 +13110,7 @@ const IconSparks = react.forwardRef(
|
|
|
12347
13110
|
"path",
|
|
12348
13111
|
{
|
|
12349
13112
|
fill: "currentColor",
|
|
12350
|
-
d: "M19.7722 2.5045c.
|
|
13113
|
+
d: "M19.7722 2.5045c.0885-.1962.3671-.1962.4556 0l.6667 1.476a.2504.2504 0 0 0 .1249.125l1.4761.6666c.1962.0886.1962.3671 0 .4557l-1.4761.6667a.2504.2504 0 0 0-.1249.125l-.6667 1.476c-.0885.1962-.3671.1962-.4556 0l-.6667-1.476a.2502.2502 0 0 0-.125-.125l-1.476-.6667c-.1962-.0886-.1962-.367 0-.4557l1.476-.6666a.2502.2502 0 0 0 .125-.125l.6667-1.476ZM19.7722 16.5045c.0885-.1962.3671-.1962.4556 0l.6667 1.476a.2505.2505 0 0 0 .1249.125l1.4761.6667c.1962.0885.1962.3671 0 .4556l-1.4761.6667a.2507.2507 0 0 0-.1249.1249l-.6667 1.4761c-.0885.1962-.3671.1962-.4556 0l-.6667-1.4761a.2505.2505 0 0 0-.125-.1249l-1.476-.6667c-.1962-.0885-.1962-.3671 0-.4556l1.476-.6667a.2504.2504 0 0 0 .125-.125l.6667-1.476Z"
|
|
12351
13114
|
}
|
|
12352
13115
|
),
|
|
12353
13116
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -13758,19 +14521,52 @@ const IconSwitch = react.forwardRef(
|
|
|
13758
14521
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
13759
14522
|
"path",
|
|
13760
14523
|
{
|
|
13761
|
-
|
|
13762
|
-
|
|
13763
|
-
|
|
13764
|
-
|
|
13765
|
-
d: "M7 18c-7 0-7-11 0-11h10c7 0 7 11 0 11h-10Z"
|
|
14524
|
+
fill: "currentColor",
|
|
14525
|
+
fillRule: "evenodd",
|
|
14526
|
+
d: "M16 8h-8c-2.2091 0-4 1.7909-4 4 0 2.2091 1.7909 4 4 4h8c2.2091 0 4-1.7909 4-4 0-2.2091-1.7909-4-4-4Zm-8-2c-3.3137 0-6 2.6863-6 6s2.6863 6 6 6h8c3.3137 0 6-2.6863 6-6s-2.6863-6-6-6h-8Z",
|
|
14527
|
+
clipRule: "evenodd"
|
|
13766
14528
|
}
|
|
13767
14529
|
),
|
|
13768
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
14530
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
14531
|
+
"path",
|
|
14532
|
+
{
|
|
14533
|
+
fill: "currentColor",
|
|
14534
|
+
d: "M19 12c0 1.6569-1.3431 3-3 3s-3-1.3431-3-3 1.3431-3 3-3 3 1.3431 3 3Z"
|
|
14535
|
+
}
|
|
14536
|
+
)
|
|
13769
14537
|
);
|
|
13770
14538
|
}
|
|
13771
14539
|
);
|
|
13772
14540
|
IconSwitch[designSystemBaseIcon.iconSymbol] = true;
|
|
13773
14541
|
|
|
14542
|
+
const IconTable = react.forwardRef(
|
|
14543
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
14544
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
14545
|
+
return react.createElement(
|
|
14546
|
+
StyledIcon,
|
|
14547
|
+
{
|
|
14548
|
+
...props,
|
|
14549
|
+
weight,
|
|
14550
|
+
debug,
|
|
14551
|
+
size,
|
|
14552
|
+
viewBox: "0 0 24 24",
|
|
14553
|
+
fill: "none",
|
|
14554
|
+
ref: forwardRef2
|
|
14555
|
+
},
|
|
14556
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
14557
|
+
"path",
|
|
14558
|
+
{
|
|
14559
|
+
fill: "currentColor",
|
|
14560
|
+
fillRule: "evenodd",
|
|
14561
|
+
d: "M5 2c-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-14Zm6 2h-6c-.5523 0-1 .4477-1 1v3h7v-4Zm-7 6v4h7v-4h-7Zm0 6v3c0 .5523.4477 1 1 1h6v-4h-7Zm9 4h6c.5523 0 1-.4477 1-1v-3h-7v4Zm7-6v-4h-7v4h7Zm0-6h-7v-4h6c.5523 0 1 .4477 1 1v3Z",
|
|
14562
|
+
clipRule: "evenodd"
|
|
14563
|
+
}
|
|
14564
|
+
)
|
|
14565
|
+
);
|
|
14566
|
+
}
|
|
14567
|
+
);
|
|
14568
|
+
IconTable[designSystemBaseIcon.iconSymbol] = true;
|
|
14569
|
+
|
|
13774
14570
|
const IconTag = react.forwardRef(
|
|
13775
14571
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
13776
14572
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -14661,6 +15457,34 @@ const IconTicket = react.forwardRef(
|
|
|
14661
15457
|
);
|
|
14662
15458
|
IconTicket[designSystemBaseIcon.iconSymbol] = true;
|
|
14663
15459
|
|
|
15460
|
+
const IconTimeline = react.forwardRef(
|
|
15461
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
15462
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
15463
|
+
return react.createElement(
|
|
15464
|
+
StyledIcon,
|
|
15465
|
+
{
|
|
15466
|
+
...props,
|
|
15467
|
+
weight,
|
|
15468
|
+
debug,
|
|
15469
|
+
size,
|
|
15470
|
+
viewBox: "0 0 24 24",
|
|
15471
|
+
fill: "none",
|
|
15472
|
+
ref: forwardRef2
|
|
15473
|
+
},
|
|
15474
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
15475
|
+
"path",
|
|
15476
|
+
{
|
|
15477
|
+
fill: "currentColor",
|
|
15478
|
+
fillRule: "evenodd",
|
|
15479
|
+
d: "M5 2c-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-14Zm-1 3c0-.5523.4477-1 1-1h14c.5523 0 1 .4477 1 1v6h-7.75c-.5523 0-1 .4477-1 1s.4477 1 1 1h7.75v6c0 .5523-.4477 1-1 1h-14c-.5523 0-1-.4477-1-1v-14Zm3 2c-.5523 0-1 .4477-1 1s.4477 1 1 1h7.5c.5523 0 1-.4477 1-1s-.4477-1-1-1h-7.5Zm2.25 8c-.5523 0-1 .4477-1 1s.4477 1 1 1h4.125c.5523 0 1-.4477 1-1s-.4477-1-1-1h-4.125Z",
|
|
15480
|
+
clipRule: "evenodd"
|
|
15481
|
+
}
|
|
15482
|
+
)
|
|
15483
|
+
);
|
|
15484
|
+
}
|
|
15485
|
+
);
|
|
15486
|
+
IconTimeline[designSystemBaseIcon.iconSymbol] = true;
|
|
15487
|
+
|
|
14664
15488
|
const IconTimer = react.forwardRef(
|
|
14665
15489
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
14666
15490
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -15822,6 +16646,7 @@ exports.IconAlignCenterVertical = IconAlignCenterVertical;
|
|
|
15822
16646
|
exports.IconAlignLeft = IconAlignLeft;
|
|
15823
16647
|
exports.IconAlignRight = IconAlignRight;
|
|
15824
16648
|
exports.IconAlignTop = IconAlignTop;
|
|
16649
|
+
exports.IconAlignmentScale = IconAlignmentScale;
|
|
15825
16650
|
exports.IconArrowArcLeft = IconArrowArcLeft;
|
|
15826
16651
|
exports.IconArrowArcRight = IconArrowArcRight;
|
|
15827
16652
|
exports.IconArrowBendUpLeft = IconArrowBendUpLeft;
|
|
@@ -15836,6 +16661,8 @@ exports.IconArrowDown = IconArrowDown;
|
|
|
15836
16661
|
exports.IconArrowDownLeft = IconArrowDownLeft;
|
|
15837
16662
|
exports.IconArrowDownRight = IconArrowDownRight;
|
|
15838
16663
|
exports.IconArrowElbowDownRight = IconArrowElbowDownRight;
|
|
16664
|
+
exports.IconArrowFatLeft = IconArrowFatLeft;
|
|
16665
|
+
exports.IconArrowFatLeftRight = IconArrowFatLeftRight;
|
|
15839
16666
|
exports.IconArrowFatRight = IconArrowFatRight;
|
|
15840
16667
|
exports.IconArrowFatUpRight = IconArrowFatUpRight;
|
|
15841
16668
|
exports.IconArrowLeft = IconArrowLeft;
|
|
@@ -15854,6 +16681,8 @@ exports.IconArrowsOutCardinal = IconArrowsOutCardinal;
|
|
|
15854
16681
|
exports.IconArrowsOutLinesHorizontal = IconArrowsOutLinesHorizontal;
|
|
15855
16682
|
exports.IconArrowsOutSimple = IconArrowsOutSimple;
|
|
15856
16683
|
exports.IconArrowsSquareCounterClockwiseY = IconArrowsSquareCounterClockwiseY;
|
|
16684
|
+
exports.IconArrowsTimeBackward = IconArrowsTimeBackward;
|
|
16685
|
+
exports.IconArrowsTimeForward = IconArrowsTimeForward;
|
|
15857
16686
|
exports.IconArticle = IconArticle;
|
|
15858
16687
|
exports.IconAt = IconAt;
|
|
15859
16688
|
exports.IconBadge = IconBadge;
|
|
@@ -15864,6 +16693,7 @@ exports.IconBellTilt = IconBellTilt;
|
|
|
15864
16693
|
exports.IconBoard = IconBoard;
|
|
15865
16694
|
exports.IconBookOpenInfo = IconBookOpenInfo;
|
|
15866
16695
|
exports.IconBookmark = IconBookmark;
|
|
16696
|
+
exports.IconBoxCaptions = IconBoxCaptions;
|
|
15867
16697
|
exports.IconBracketCurlyLeft = IconBracketCurlyLeft;
|
|
15868
16698
|
exports.IconBracketCurlyRight = IconBracketCurlyRight;
|
|
15869
16699
|
exports.IconBracketsAngleSlash = IconBracketsAngleSlash;
|
|
@@ -15918,6 +16748,7 @@ exports.IconCog = IconCog;
|
|
|
15918
16748
|
exports.IconCoins = IconCoins;
|
|
15919
16749
|
exports.IconCoinsChecked = IconCoinsChecked;
|
|
15920
16750
|
exports.IconCoinsSlash = IconCoinsSlash;
|
|
16751
|
+
exports.IconColumns = IconColumns;
|
|
15921
16752
|
exports.IconColumnsThree = IconColumnsThree;
|
|
15922
16753
|
exports.IconCommentGroup = IconCommentGroup;
|
|
15923
16754
|
exports.IconConeSerpentine = IconConeSerpentine;
|
|
@@ -15952,8 +16783,10 @@ exports.IconDiagramCardSmall2 = IconDiagramCardSmall2;
|
|
|
15952
16783
|
exports.IconDiagramCardSmall3 = IconDiagramCardSmall3;
|
|
15953
16784
|
exports.IconDiagramCardTeam = IconDiagramCardTeam;
|
|
15954
16785
|
exports.IconDiagramCardUser = IconDiagramCardUser;
|
|
16786
|
+
exports.IconDiagramming = IconDiagramming;
|
|
15955
16787
|
exports.IconDistributeHorizontal = IconDistributeHorizontal;
|
|
15956
16788
|
exports.IconDistributeVertical = IconDistributeVertical;
|
|
16789
|
+
exports.IconDoc = IconDoc;
|
|
15957
16790
|
exports.IconDollarSignCurrency = IconDollarSignCurrency;
|
|
15958
16791
|
exports.IconDotVoting = IconDotVoting;
|
|
15959
16792
|
exports.IconDotsNine = IconDotsNine;
|
|
@@ -15968,6 +16801,7 @@ exports.IconEraser = IconEraser;
|
|
|
15968
16801
|
exports.IconExclamationMarkOctagon = IconExclamationMarkOctagon;
|
|
15969
16802
|
exports.IconExclamationPointCircle = IconExclamationPointCircle;
|
|
15970
16803
|
exports.IconExport = IconExport;
|
|
16804
|
+
exports.IconExternal = IconExternal;
|
|
15971
16805
|
exports.IconEyeClosed = IconEyeClosed;
|
|
15972
16806
|
exports.IconEyeClosedDotsFourFrameBroken = IconEyeClosedDotsFourFrameBroken;
|
|
15973
16807
|
exports.IconEyeOpen = IconEyeOpen;
|
|
@@ -16105,6 +16939,14 @@ exports.IconPresentationPlay = IconPresentationPlay;
|
|
|
16105
16939
|
exports.IconPresentationPlus = IconPresentationPlus;
|
|
16106
16940
|
exports.IconPrevious = IconPrevious;
|
|
16107
16941
|
exports.IconProhibit = IconProhibit;
|
|
16942
|
+
exports.IconProtoButton = IconProtoButton;
|
|
16943
|
+
exports.IconProtoCheckbox = IconProtoCheckbox;
|
|
16944
|
+
exports.IconProtoDropdown = IconProtoDropdown;
|
|
16945
|
+
exports.IconProtoInput = IconProtoInput;
|
|
16946
|
+
exports.IconProtoNumber = IconProtoNumber;
|
|
16947
|
+
exports.IconProtoRadio = IconProtoRadio;
|
|
16948
|
+
exports.IconProtoSlider = IconProtoSlider;
|
|
16949
|
+
exports.IconPrototype = IconPrototype;
|
|
16108
16950
|
exports.IconPushPin = IconPushPin;
|
|
16109
16951
|
exports.IconPushPinFilled = IconPushPinFilled;
|
|
16110
16952
|
exports.IconQuestionMark = IconQuestionMark;
|
|
@@ -16112,7 +16954,10 @@ exports.IconQuestionMarkCircle = IconQuestionMarkCircle;
|
|
|
16112
16954
|
exports.IconQuotes = IconQuotes;
|
|
16113
16955
|
exports.IconRectangleArrowUpCenter = IconRectangleArrowUpCenter;
|
|
16114
16956
|
exports.IconRectangleDashLines = IconRectangleDashLines;
|
|
16957
|
+
exports.IconRectangleDotLarge = IconRectangleDotLarge;
|
|
16115
16958
|
exports.IconRectangleDotLinePen = IconRectangleDotLinePen;
|
|
16959
|
+
exports.IconRectangleDotMedium = IconRectangleDotMedium;
|
|
16960
|
+
exports.IconRectangleDotSmall = IconRectangleDotSmall;
|
|
16116
16961
|
exports.IconRectangleFrame2Lines = IconRectangleFrame2Lines;
|
|
16117
16962
|
exports.IconRectanglePlayStack = IconRectanglePlayStack;
|
|
16118
16963
|
exports.IconRectanglePortrait = IconRectanglePortrait;
|
|
@@ -16142,12 +16987,14 @@ exports.IconShapes = IconShapes;
|
|
|
16142
16987
|
exports.IconShapesLines = IconShapesLines;
|
|
16143
16988
|
exports.IconShieldCheck = IconShieldCheck;
|
|
16144
16989
|
exports.IconShieldLock = IconShieldLock;
|
|
16990
|
+
exports.IconShieldLockFilled = IconShieldLockFilled;
|
|
16145
16991
|
exports.IconShuffle = IconShuffle;
|
|
16146
16992
|
exports.IconSidebarClosed = IconSidebarClosed;
|
|
16147
16993
|
exports.IconSidebarGlobalClosed = IconSidebarGlobalClosed;
|
|
16148
16994
|
exports.IconSidebarGlobalOpen = IconSidebarGlobalOpen;
|
|
16149
16995
|
exports.IconSidebarOpen = IconSidebarOpen;
|
|
16150
16996
|
exports.IconSingleSparksFilled = IconSingleSparksFilled;
|
|
16997
|
+
exports.IconSlide = IconSlide;
|
|
16151
16998
|
exports.IconSlidersX = IconSlidersX;
|
|
16152
16999
|
exports.IconSlidersY = IconSlidersY;
|
|
16153
17000
|
exports.IconSmiley = IconSmiley;
|
|
@@ -16210,6 +17057,7 @@ exports.IconStroke4 = IconStroke4;
|
|
|
16210
17057
|
exports.IconStroke5 = IconStroke5;
|
|
16211
17058
|
exports.IconStroke6 = IconStroke6;
|
|
16212
17059
|
exports.IconSwitch = IconSwitch;
|
|
17060
|
+
exports.IconTable = IconTable;
|
|
16213
17061
|
exports.IconTag = IconTag;
|
|
16214
17062
|
exports.IconTasks = IconTasks;
|
|
16215
17063
|
exports.IconTextAUnderline = IconTextAUnderline;
|
|
@@ -16234,6 +17082,7 @@ exports.IconTextUUnderlined = IconTextUUnderlined;
|
|
|
16234
17082
|
exports.IconThumbsUp = IconThumbsUp;
|
|
16235
17083
|
exports.IconTickCircle = IconTickCircle;
|
|
16236
17084
|
exports.IconTicket = IconTicket;
|
|
17085
|
+
exports.IconTimeline = IconTimeline;
|
|
16237
17086
|
exports.IconTimer = IconTimer;
|
|
16238
17087
|
exports.IconToolbar = IconToolbar;
|
|
16239
17088
|
exports.IconTooltip = IconTooltip;
|