@mirohq/design-system-icons 0.48.4 → 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 +867 -18
- package/dist/main.js.map +1 -1
- package/dist/module.js +843 -19
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +52 -2
- package/package.json +4 -4
- 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/module.js
CHANGED
|
@@ -2,8 +2,8 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import { forwardRef, createElement } from 'react';
|
|
3
3
|
import { styles, iconSymbol } from '@mirohq/design-system-base-icon';
|
|
4
4
|
import { useLocalStorage } from '@mirohq/design-system-use-local-storage';
|
|
5
|
-
import { styled, theme } from '@mirohq/design-system-stitches';
|
|
6
5
|
import { Primitive } from '@mirohq/design-system-primitive';
|
|
6
|
+
import { styled, theme } from '@mirohq/design-system-stitches';
|
|
7
7
|
import { mapKeysToVariants } from '@mirohq/design-system-utils';
|
|
8
8
|
|
|
9
9
|
const StyledIcon = styled(Primitive.svg, {
|
|
@@ -18,7 +18,7 @@ const StyledIcon = styled(Primitive.svg, {
|
|
|
18
18
|
color: mapKeysToVariants(theme.colors, "color"),
|
|
19
19
|
debug: {
|
|
20
20
|
true: {
|
|
21
|
-
color: "
|
|
21
|
+
color: "#06D834 !important"
|
|
22
22
|
},
|
|
23
23
|
false: {}
|
|
24
24
|
}
|
|
@@ -405,6 +405,43 @@ const IconAlignTop = forwardRef(
|
|
|
405
405
|
);
|
|
406
406
|
IconAlignTop[iconSymbol] = true;
|
|
407
407
|
|
|
408
|
+
const IconAlignmentScale = forwardRef(
|
|
409
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
410
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
411
|
+
return createElement(
|
|
412
|
+
StyledIcon,
|
|
413
|
+
{
|
|
414
|
+
...props,
|
|
415
|
+
weight,
|
|
416
|
+
debug,
|
|
417
|
+
size,
|
|
418
|
+
viewBox: "0 0 24 24",
|
|
419
|
+
fill: "none",
|
|
420
|
+
ref: forwardRef2
|
|
421
|
+
},
|
|
422
|
+
/* @__PURE__ */ jsx(
|
|
423
|
+
"path",
|
|
424
|
+
{
|
|
425
|
+
fill: "currentColor",
|
|
426
|
+
fillRule: "evenodd",
|
|
427
|
+
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",
|
|
428
|
+
clipRule: "evenodd"
|
|
429
|
+
}
|
|
430
|
+
),
|
|
431
|
+
/* @__PURE__ */ jsx(
|
|
432
|
+
"path",
|
|
433
|
+
{
|
|
434
|
+
fill: "currentColor",
|
|
435
|
+
fillRule: "evenodd",
|
|
436
|
+
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",
|
|
437
|
+
clipRule: "evenodd"
|
|
438
|
+
}
|
|
439
|
+
)
|
|
440
|
+
);
|
|
441
|
+
}
|
|
442
|
+
);
|
|
443
|
+
IconAlignmentScale[iconSymbol] = true;
|
|
444
|
+
|
|
408
445
|
const IconArrowArcLeft = forwardRef(
|
|
409
446
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
410
447
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -888,6 +925,79 @@ const IconArrowElbowDownRight = forwardRef(
|
|
|
888
925
|
);
|
|
889
926
|
IconArrowElbowDownRight[iconSymbol] = true;
|
|
890
927
|
|
|
928
|
+
const IconArrowFatLeftRight = forwardRef(
|
|
929
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
930
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
931
|
+
return createElement(
|
|
932
|
+
StyledIcon,
|
|
933
|
+
{
|
|
934
|
+
...props,
|
|
935
|
+
weight,
|
|
936
|
+
debug,
|
|
937
|
+
size,
|
|
938
|
+
viewBox: "0 0 24 24",
|
|
939
|
+
fill: "none",
|
|
940
|
+
ref: forwardRef2
|
|
941
|
+
},
|
|
942
|
+
/* @__PURE__ */ jsx(
|
|
943
|
+
"path",
|
|
944
|
+
{
|
|
945
|
+
fill: "currentColor",
|
|
946
|
+
fillRule: "evenodd",
|
|
947
|
+
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",
|
|
948
|
+
clipRule: "evenodd"
|
|
949
|
+
}
|
|
950
|
+
),
|
|
951
|
+
/* @__PURE__ */ jsx(
|
|
952
|
+
"path",
|
|
953
|
+
{
|
|
954
|
+
fill: "currentColor",
|
|
955
|
+
fillRule: "evenodd",
|
|
956
|
+
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",
|
|
957
|
+
clipRule: "evenodd"
|
|
958
|
+
}
|
|
959
|
+
)
|
|
960
|
+
);
|
|
961
|
+
}
|
|
962
|
+
);
|
|
963
|
+
IconArrowFatLeftRight[iconSymbol] = true;
|
|
964
|
+
|
|
965
|
+
const IconArrowFatLeft = forwardRef(
|
|
966
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
967
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
968
|
+
return createElement(
|
|
969
|
+
StyledIcon,
|
|
970
|
+
{
|
|
971
|
+
...props,
|
|
972
|
+
weight,
|
|
973
|
+
debug,
|
|
974
|
+
size,
|
|
975
|
+
viewBox: "0 0 24 24",
|
|
976
|
+
fill: "none",
|
|
977
|
+
ref: forwardRef2
|
|
978
|
+
},
|
|
979
|
+
/* @__PURE__ */ jsx(
|
|
980
|
+
"path",
|
|
981
|
+
{
|
|
982
|
+
fill: "currentColor",
|
|
983
|
+
fillRule: "evenodd",
|
|
984
|
+
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",
|
|
985
|
+
clipRule: "evenodd"
|
|
986
|
+
}
|
|
987
|
+
),
|
|
988
|
+
/* @__PURE__ */ jsx(
|
|
989
|
+
"path",
|
|
990
|
+
{
|
|
991
|
+
stroke: "currentColor",
|
|
992
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
993
|
+
d: "M3 11.9999v.0001"
|
|
994
|
+
}
|
|
995
|
+
)
|
|
996
|
+
);
|
|
997
|
+
}
|
|
998
|
+
);
|
|
999
|
+
IconArrowFatLeft[iconSymbol] = true;
|
|
1000
|
+
|
|
891
1001
|
const IconArrowFatRight = forwardRef(
|
|
892
1002
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
893
1003
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -1479,6 +1589,76 @@ const IconArrowsSquareCounterClockwiseY = forwardRef(
|
|
|
1479
1589
|
);
|
|
1480
1590
|
IconArrowsSquareCounterClockwiseY[iconSymbol] = true;
|
|
1481
1591
|
|
|
1592
|
+
const IconArrowsTimeBackward = forwardRef(
|
|
1593
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
1594
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
1595
|
+
return createElement(
|
|
1596
|
+
StyledIcon,
|
|
1597
|
+
{
|
|
1598
|
+
...props,
|
|
1599
|
+
weight,
|
|
1600
|
+
debug,
|
|
1601
|
+
size,
|
|
1602
|
+
viewBox: "0 0 24 24",
|
|
1603
|
+
fill: "none",
|
|
1604
|
+
ref: forwardRef2
|
|
1605
|
+
},
|
|
1606
|
+
/* @__PURE__ */ jsx(
|
|
1607
|
+
"path",
|
|
1608
|
+
{
|
|
1609
|
+
fill: "currentColor",
|
|
1610
|
+
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"
|
|
1611
|
+
}
|
|
1612
|
+
),
|
|
1613
|
+
/* @__PURE__ */ jsx(
|
|
1614
|
+
"path",
|
|
1615
|
+
{
|
|
1616
|
+
fill: "currentColor",
|
|
1617
|
+
fillRule: "evenodd",
|
|
1618
|
+
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",
|
|
1619
|
+
clipRule: "evenodd"
|
|
1620
|
+
}
|
|
1621
|
+
)
|
|
1622
|
+
);
|
|
1623
|
+
}
|
|
1624
|
+
);
|
|
1625
|
+
IconArrowsTimeBackward[iconSymbol] = true;
|
|
1626
|
+
|
|
1627
|
+
const IconArrowsTimeForward = forwardRef(
|
|
1628
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
1629
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
1630
|
+
return createElement(
|
|
1631
|
+
StyledIcon,
|
|
1632
|
+
{
|
|
1633
|
+
...props,
|
|
1634
|
+
weight,
|
|
1635
|
+
debug,
|
|
1636
|
+
size,
|
|
1637
|
+
viewBox: "0 0 24 24",
|
|
1638
|
+
fill: "none",
|
|
1639
|
+
ref: forwardRef2
|
|
1640
|
+
},
|
|
1641
|
+
/* @__PURE__ */ jsx(
|
|
1642
|
+
"path",
|
|
1643
|
+
{
|
|
1644
|
+
fill: "currentColor",
|
|
1645
|
+
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"
|
|
1646
|
+
}
|
|
1647
|
+
),
|
|
1648
|
+
/* @__PURE__ */ jsx(
|
|
1649
|
+
"path",
|
|
1650
|
+
{
|
|
1651
|
+
fill: "currentColor",
|
|
1652
|
+
fillRule: "evenodd",
|
|
1653
|
+
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",
|
|
1654
|
+
clipRule: "evenodd"
|
|
1655
|
+
}
|
|
1656
|
+
)
|
|
1657
|
+
);
|
|
1658
|
+
}
|
|
1659
|
+
);
|
|
1660
|
+
IconArrowsTimeForward[iconSymbol] = true;
|
|
1661
|
+
|
|
1482
1662
|
const IconArticle = forwardRef(
|
|
1483
1663
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
1484
1664
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -1798,6 +1978,41 @@ const IconBookmark = forwardRef(
|
|
|
1798
1978
|
);
|
|
1799
1979
|
IconBookmark[iconSymbol] = true;
|
|
1800
1980
|
|
|
1981
|
+
const IconBoxCaptions = forwardRef(
|
|
1982
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
1983
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
1984
|
+
return createElement(
|
|
1985
|
+
StyledIcon,
|
|
1986
|
+
{
|
|
1987
|
+
...props,
|
|
1988
|
+
weight,
|
|
1989
|
+
debug,
|
|
1990
|
+
size,
|
|
1991
|
+
viewBox: "0 0 24 24",
|
|
1992
|
+
fill: "none",
|
|
1993
|
+
ref: forwardRef2
|
|
1994
|
+
},
|
|
1995
|
+
/* @__PURE__ */ jsx(
|
|
1996
|
+
"path",
|
|
1997
|
+
{
|
|
1998
|
+
fill: "currentColor",
|
|
1999
|
+
fillRule: "evenodd",
|
|
2000
|
+
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",
|
|
2001
|
+
clipRule: "evenodd"
|
|
2002
|
+
}
|
|
2003
|
+
),
|
|
2004
|
+
/* @__PURE__ */ jsx(
|
|
2005
|
+
"path",
|
|
2006
|
+
{
|
|
2007
|
+
fill: "currentColor",
|
|
2008
|
+
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"
|
|
2009
|
+
}
|
|
2010
|
+
)
|
|
2011
|
+
);
|
|
2012
|
+
}
|
|
2013
|
+
);
|
|
2014
|
+
IconBoxCaptions[iconSymbol] = true;
|
|
2015
|
+
|
|
1801
2016
|
const IconBracketCurlyLeft = forwardRef(
|
|
1802
2017
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
1803
2018
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -3405,7 +3620,7 @@ const IconClock = forwardRef(
|
|
|
3405
3620
|
{
|
|
3406
3621
|
stroke: "currentColor",
|
|
3407
3622
|
strokeWidth: "var(--svg-stroke-width)",
|
|
3408
|
-
d: "M12
|
|
3623
|
+
d: "M12 11.9999v.0001"
|
|
3409
3624
|
}
|
|
3410
3625
|
)
|
|
3411
3626
|
);
|
|
@@ -3717,6 +3932,34 @@ const IconColumnsThree = forwardRef(
|
|
|
3717
3932
|
);
|
|
3718
3933
|
IconColumnsThree[iconSymbol] = true;
|
|
3719
3934
|
|
|
3935
|
+
const IconColumns = forwardRef(
|
|
3936
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
3937
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
3938
|
+
return createElement(
|
|
3939
|
+
StyledIcon,
|
|
3940
|
+
{
|
|
3941
|
+
...props,
|
|
3942
|
+
weight,
|
|
3943
|
+
debug,
|
|
3944
|
+
size,
|
|
3945
|
+
viewBox: "0 0 24 24",
|
|
3946
|
+
fill: "none",
|
|
3947
|
+
ref: forwardRef2
|
|
3948
|
+
},
|
|
3949
|
+
/* @__PURE__ */ jsx(
|
|
3950
|
+
"path",
|
|
3951
|
+
{
|
|
3952
|
+
fill: "currentColor",
|
|
3953
|
+
fillRule: "evenodd",
|
|
3954
|
+
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",
|
|
3955
|
+
clipRule: "evenodd"
|
|
3956
|
+
}
|
|
3957
|
+
)
|
|
3958
|
+
);
|
|
3959
|
+
}
|
|
3960
|
+
);
|
|
3961
|
+
IconColumns[iconSymbol] = true;
|
|
3962
|
+
|
|
3720
3963
|
const IconCommentGroup = forwardRef(
|
|
3721
3964
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
3722
3965
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -4873,6 +5116,34 @@ const IconDiagramCardUser = forwardRef(
|
|
|
4873
5116
|
);
|
|
4874
5117
|
IconDiagramCardUser[iconSymbol] = true;
|
|
4875
5118
|
|
|
5119
|
+
const IconDiagramming = forwardRef(
|
|
5120
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
5121
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
5122
|
+
return createElement(
|
|
5123
|
+
StyledIcon,
|
|
5124
|
+
{
|
|
5125
|
+
...props,
|
|
5126
|
+
weight,
|
|
5127
|
+
debug,
|
|
5128
|
+
size,
|
|
5129
|
+
viewBox: "0 0 24 24",
|
|
5130
|
+
fill: "none",
|
|
5131
|
+
ref: forwardRef2
|
|
5132
|
+
},
|
|
5133
|
+
/* @__PURE__ */ jsx(
|
|
5134
|
+
"path",
|
|
5135
|
+
{
|
|
5136
|
+
fill: "currentColor",
|
|
5137
|
+
fillRule: "evenodd",
|
|
5138
|
+
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",
|
|
5139
|
+
clipRule: "evenodd"
|
|
5140
|
+
}
|
|
5141
|
+
)
|
|
5142
|
+
);
|
|
5143
|
+
}
|
|
5144
|
+
);
|
|
5145
|
+
IconDiagramming[iconSymbol] = true;
|
|
5146
|
+
|
|
4876
5147
|
const IconDistributeHorizontal = forwardRef(
|
|
4877
5148
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
4878
5149
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -4958,7 +5229,7 @@ const IconDistributeVertical = forwardRef(
|
|
|
4958
5229
|
);
|
|
4959
5230
|
IconDistributeVertical[iconSymbol] = true;
|
|
4960
5231
|
|
|
4961
|
-
const
|
|
5232
|
+
const IconDoc = forwardRef(
|
|
4962
5233
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
4963
5234
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
4964
5235
|
return createElement(
|
|
@@ -4975,18 +5246,46 @@ const IconDollarSignCurrency = forwardRef(
|
|
|
4975
5246
|
/* @__PURE__ */ jsx(
|
|
4976
5247
|
"path",
|
|
4977
5248
|
{
|
|
4978
|
-
|
|
4979
|
-
|
|
4980
|
-
|
|
4981
|
-
|
|
5249
|
+
fill: "currentColor",
|
|
5250
|
+
fillRule: "evenodd",
|
|
5251
|
+
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",
|
|
5252
|
+
clipRule: "evenodd"
|
|
4982
5253
|
}
|
|
4983
5254
|
)
|
|
4984
5255
|
);
|
|
4985
5256
|
}
|
|
4986
5257
|
);
|
|
4987
|
-
|
|
5258
|
+
IconDoc[iconSymbol] = true;
|
|
4988
5259
|
|
|
4989
|
-
const
|
|
5260
|
+
const IconDollarSignCurrency = forwardRef(
|
|
5261
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
5262
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
5263
|
+
return createElement(
|
|
5264
|
+
StyledIcon,
|
|
5265
|
+
{
|
|
5266
|
+
...props,
|
|
5267
|
+
weight,
|
|
5268
|
+
debug,
|
|
5269
|
+
size,
|
|
5270
|
+
viewBox: "0 0 24 24",
|
|
5271
|
+
fill: "none",
|
|
5272
|
+
ref: forwardRef2
|
|
5273
|
+
},
|
|
5274
|
+
/* @__PURE__ */ jsx(
|
|
5275
|
+
"path",
|
|
5276
|
+
{
|
|
5277
|
+
stroke: "currentColor",
|
|
5278
|
+
strokeLinecap: "round",
|
|
5279
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
5280
|
+
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"
|
|
5281
|
+
}
|
|
5282
|
+
)
|
|
5283
|
+
);
|
|
5284
|
+
}
|
|
5285
|
+
);
|
|
5286
|
+
IconDollarSignCurrency[iconSymbol] = true;
|
|
5287
|
+
|
|
5288
|
+
const IconDotVoting = forwardRef(
|
|
4990
5289
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
4991
5290
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
4992
5291
|
return createElement(
|
|
@@ -5436,6 +5735,34 @@ const IconExport = forwardRef(
|
|
|
5436
5735
|
);
|
|
5437
5736
|
IconExport[iconSymbol] = true;
|
|
5438
5737
|
|
|
5738
|
+
const IconExternal = forwardRef(
|
|
5739
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
5740
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
5741
|
+
return createElement(
|
|
5742
|
+
StyledIcon,
|
|
5743
|
+
{
|
|
5744
|
+
...props,
|
|
5745
|
+
weight,
|
|
5746
|
+
debug,
|
|
5747
|
+
size,
|
|
5748
|
+
viewBox: "0 0 24 24",
|
|
5749
|
+
fill: "none",
|
|
5750
|
+
ref: forwardRef2
|
|
5751
|
+
},
|
|
5752
|
+
/* @__PURE__ */ jsx(
|
|
5753
|
+
"path",
|
|
5754
|
+
{
|
|
5755
|
+
fill: "currentColor",
|
|
5756
|
+
fillRule: "evenodd",
|
|
5757
|
+
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",
|
|
5758
|
+
clipRule: "evenodd"
|
|
5759
|
+
}
|
|
5760
|
+
)
|
|
5761
|
+
);
|
|
5762
|
+
}
|
|
5763
|
+
);
|
|
5764
|
+
IconExternal[iconSymbol] = true;
|
|
5765
|
+
|
|
5439
5766
|
const IconEyeClosedDotsFourFrameBroken = forwardRef(
|
|
5440
5767
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
5441
5768
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -8273,6 +8600,14 @@ const IconMonitorPause = forwardRef(
|
|
|
8273
8600
|
strokeWidth: "var(--svg-stroke-width)",
|
|
8274
8601
|
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"
|
|
8275
8602
|
}
|
|
8603
|
+
),
|
|
8604
|
+
/* @__PURE__ */ jsx(
|
|
8605
|
+
"path",
|
|
8606
|
+
{
|
|
8607
|
+
stroke: "currentColor",
|
|
8608
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
8609
|
+
d: "M14 12v.0001"
|
|
8610
|
+
}
|
|
8276
8611
|
)
|
|
8277
8612
|
);
|
|
8278
8613
|
}
|
|
@@ -8309,6 +8644,14 @@ const IconMonitorPlay = forwardRef(
|
|
|
8309
8644
|
fill: "currentColor",
|
|
8310
8645
|
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"
|
|
8311
8646
|
}
|
|
8647
|
+
),
|
|
8648
|
+
/* @__PURE__ */ jsx(
|
|
8649
|
+
"path",
|
|
8650
|
+
{
|
|
8651
|
+
stroke: "currentColor",
|
|
8652
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
8653
|
+
d: "M12 11v.0001"
|
|
8654
|
+
}
|
|
8312
8655
|
)
|
|
8313
8656
|
);
|
|
8314
8657
|
}
|
|
@@ -8339,7 +8682,15 @@ const IconMonitorStop = forwardRef(
|
|
|
8339
8682
|
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"
|
|
8340
8683
|
}
|
|
8341
8684
|
),
|
|
8342
|
-
/* @__PURE__ */ jsx("rect", { width: 6, height: 6, x: 9, y: 8, fill: "currentColor", rx: 1 })
|
|
8685
|
+
/* @__PURE__ */ jsx("rect", { width: 6, height: 6, x: 9, y: 8, fill: "currentColor", rx: 1 }),
|
|
8686
|
+
/* @__PURE__ */ jsx(
|
|
8687
|
+
"path",
|
|
8688
|
+
{
|
|
8689
|
+
stroke: "currentColor",
|
|
8690
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
8691
|
+
d: "M12 11v.0001"
|
|
8692
|
+
}
|
|
8693
|
+
)
|
|
8343
8694
|
);
|
|
8344
8695
|
}
|
|
8345
8696
|
);
|
|
@@ -10140,6 +10491,278 @@ const IconProhibit = forwardRef(
|
|
|
10140
10491
|
);
|
|
10141
10492
|
IconProhibit[iconSymbol] = true;
|
|
10142
10493
|
|
|
10494
|
+
const IconProtoButton = forwardRef(
|
|
10495
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
10496
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
10497
|
+
return createElement(
|
|
10498
|
+
StyledIcon,
|
|
10499
|
+
{
|
|
10500
|
+
...props,
|
|
10501
|
+
weight,
|
|
10502
|
+
debug,
|
|
10503
|
+
size,
|
|
10504
|
+
viewBox: "0 0 24 24",
|
|
10505
|
+
fill: "none",
|
|
10506
|
+
ref: forwardRef2
|
|
10507
|
+
},
|
|
10508
|
+
/* @__PURE__ */ jsx(
|
|
10509
|
+
"path",
|
|
10510
|
+
{
|
|
10511
|
+
fill: "currentColor",
|
|
10512
|
+
fillRule: "evenodd",
|
|
10513
|
+
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",
|
|
10514
|
+
clipRule: "evenodd"
|
|
10515
|
+
}
|
|
10516
|
+
),
|
|
10517
|
+
/* @__PURE__ */ jsx(
|
|
10518
|
+
"path",
|
|
10519
|
+
{
|
|
10520
|
+
fill: "currentColor",
|
|
10521
|
+
fillRule: "evenodd",
|
|
10522
|
+
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",
|
|
10523
|
+
clipRule: "evenodd"
|
|
10524
|
+
}
|
|
10525
|
+
)
|
|
10526
|
+
);
|
|
10527
|
+
}
|
|
10528
|
+
);
|
|
10529
|
+
IconProtoButton[iconSymbol] = true;
|
|
10530
|
+
|
|
10531
|
+
const IconProtoCheckbox = forwardRef(
|
|
10532
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
10533
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
10534
|
+
return createElement(
|
|
10535
|
+
StyledIcon,
|
|
10536
|
+
{
|
|
10537
|
+
...props,
|
|
10538
|
+
weight,
|
|
10539
|
+
debug,
|
|
10540
|
+
size,
|
|
10541
|
+
viewBox: "0 0 24 24",
|
|
10542
|
+
fill: "none",
|
|
10543
|
+
ref: forwardRef2
|
|
10544
|
+
},
|
|
10545
|
+
/* @__PURE__ */ jsx(
|
|
10546
|
+
"path",
|
|
10547
|
+
{
|
|
10548
|
+
fill: "currentColor",
|
|
10549
|
+
fillRule: "evenodd",
|
|
10550
|
+
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",
|
|
10551
|
+
clipRule: "evenodd"
|
|
10552
|
+
}
|
|
10553
|
+
)
|
|
10554
|
+
);
|
|
10555
|
+
}
|
|
10556
|
+
);
|
|
10557
|
+
IconProtoCheckbox[iconSymbol] = true;
|
|
10558
|
+
|
|
10559
|
+
const IconProtoDropdown = forwardRef(
|
|
10560
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
10561
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
10562
|
+
return createElement(
|
|
10563
|
+
StyledIcon,
|
|
10564
|
+
{
|
|
10565
|
+
...props,
|
|
10566
|
+
weight,
|
|
10567
|
+
debug,
|
|
10568
|
+
size,
|
|
10569
|
+
viewBox: "0 0 24 24",
|
|
10570
|
+
fill: "none",
|
|
10571
|
+
ref: forwardRef2
|
|
10572
|
+
},
|
|
10573
|
+
/* @__PURE__ */ jsx(
|
|
10574
|
+
"path",
|
|
10575
|
+
{
|
|
10576
|
+
fill: "currentColor",
|
|
10577
|
+
fillRule: "evenodd",
|
|
10578
|
+
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",
|
|
10579
|
+
clipRule: "evenodd"
|
|
10580
|
+
}
|
|
10581
|
+
),
|
|
10582
|
+
/* @__PURE__ */ jsx(
|
|
10583
|
+
"path",
|
|
10584
|
+
{
|
|
10585
|
+
fill: "currentColor",
|
|
10586
|
+
fillRule: "evenodd",
|
|
10587
|
+
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",
|
|
10588
|
+
clipRule: "evenodd"
|
|
10589
|
+
}
|
|
10590
|
+
)
|
|
10591
|
+
);
|
|
10592
|
+
}
|
|
10593
|
+
);
|
|
10594
|
+
IconProtoDropdown[iconSymbol] = true;
|
|
10595
|
+
|
|
10596
|
+
const IconProtoInput = forwardRef(
|
|
10597
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
10598
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
10599
|
+
return createElement(
|
|
10600
|
+
StyledIcon,
|
|
10601
|
+
{
|
|
10602
|
+
...props,
|
|
10603
|
+
weight,
|
|
10604
|
+
debug,
|
|
10605
|
+
size,
|
|
10606
|
+
viewBox: "0 0 24 24",
|
|
10607
|
+
fill: "none",
|
|
10608
|
+
ref: forwardRef2
|
|
10609
|
+
},
|
|
10610
|
+
/* @__PURE__ */ jsx(
|
|
10611
|
+
"path",
|
|
10612
|
+
{
|
|
10613
|
+
fill: "currentColor",
|
|
10614
|
+
fillRule: "evenodd",
|
|
10615
|
+
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",
|
|
10616
|
+
clipRule: "evenodd"
|
|
10617
|
+
}
|
|
10618
|
+
),
|
|
10619
|
+
/* @__PURE__ */ jsx(
|
|
10620
|
+
"path",
|
|
10621
|
+
{
|
|
10622
|
+
fill: "currentColor",
|
|
10623
|
+
fillRule: "evenodd",
|
|
10624
|
+
d: "M7 8c.5523 0 1 .4477 1 1v6c0 .5523-.4477 1-1 1s-1-.4477-1-1v-6c0-.5523.4477-1 1-1Z",
|
|
10625
|
+
clipRule: "evenodd"
|
|
10626
|
+
}
|
|
10627
|
+
)
|
|
10628
|
+
);
|
|
10629
|
+
}
|
|
10630
|
+
);
|
|
10631
|
+
IconProtoInput[iconSymbol] = true;
|
|
10632
|
+
|
|
10633
|
+
const IconProtoNumber = forwardRef(
|
|
10634
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
10635
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
10636
|
+
return createElement(
|
|
10637
|
+
StyledIcon,
|
|
10638
|
+
{
|
|
10639
|
+
...props,
|
|
10640
|
+
weight,
|
|
10641
|
+
debug,
|
|
10642
|
+
size,
|
|
10643
|
+
viewBox: "0 0 24 24",
|
|
10644
|
+
fill: "none",
|
|
10645
|
+
ref: forwardRef2
|
|
10646
|
+
},
|
|
10647
|
+
/* @__PURE__ */ jsx(
|
|
10648
|
+
"path",
|
|
10649
|
+
{
|
|
10650
|
+
fill: "currentColor",
|
|
10651
|
+
fillRule: "evenodd",
|
|
10652
|
+
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",
|
|
10653
|
+
clipRule: "evenodd"
|
|
10654
|
+
}
|
|
10655
|
+
),
|
|
10656
|
+
/* @__PURE__ */ jsx(
|
|
10657
|
+
"path",
|
|
10658
|
+
{
|
|
10659
|
+
fill: "currentColor",
|
|
10660
|
+
fillRule: "evenodd",
|
|
10661
|
+
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",
|
|
10662
|
+
clipRule: "evenodd"
|
|
10663
|
+
}
|
|
10664
|
+
)
|
|
10665
|
+
);
|
|
10666
|
+
}
|
|
10667
|
+
);
|
|
10668
|
+
IconProtoNumber[iconSymbol] = true;
|
|
10669
|
+
|
|
10670
|
+
const IconProtoRadio = forwardRef(
|
|
10671
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
10672
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
10673
|
+
return createElement(
|
|
10674
|
+
StyledIcon,
|
|
10675
|
+
{
|
|
10676
|
+
...props,
|
|
10677
|
+
weight,
|
|
10678
|
+
debug,
|
|
10679
|
+
size,
|
|
10680
|
+
viewBox: "0 0 24 24",
|
|
10681
|
+
fill: "none",
|
|
10682
|
+
ref: forwardRef2
|
|
10683
|
+
},
|
|
10684
|
+
/* @__PURE__ */ jsx(
|
|
10685
|
+
"path",
|
|
10686
|
+
{
|
|
10687
|
+
fill: "currentColor",
|
|
10688
|
+
fillRule: "evenodd",
|
|
10689
|
+
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",
|
|
10690
|
+
clipRule: "evenodd"
|
|
10691
|
+
}
|
|
10692
|
+
),
|
|
10693
|
+
/* @__PURE__ */ jsx(
|
|
10694
|
+
"path",
|
|
10695
|
+
{
|
|
10696
|
+
fill: "currentColor",
|
|
10697
|
+
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"
|
|
10698
|
+
}
|
|
10699
|
+
)
|
|
10700
|
+
);
|
|
10701
|
+
}
|
|
10702
|
+
);
|
|
10703
|
+
IconProtoRadio[iconSymbol] = true;
|
|
10704
|
+
|
|
10705
|
+
const IconProtoSlider = forwardRef(
|
|
10706
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
10707
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
10708
|
+
return createElement(
|
|
10709
|
+
StyledIcon,
|
|
10710
|
+
{
|
|
10711
|
+
...props,
|
|
10712
|
+
weight,
|
|
10713
|
+
debug,
|
|
10714
|
+
size,
|
|
10715
|
+
viewBox: "0 0 24 24",
|
|
10716
|
+
fill: "none",
|
|
10717
|
+
ref: forwardRef2
|
|
10718
|
+
},
|
|
10719
|
+
/* @__PURE__ */ jsx(
|
|
10720
|
+
"path",
|
|
10721
|
+
{
|
|
10722
|
+
fill: "currentColor",
|
|
10723
|
+
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"
|
|
10724
|
+
}
|
|
10725
|
+
),
|
|
10726
|
+
/* @__PURE__ */ jsx(
|
|
10727
|
+
"path",
|
|
10728
|
+
{
|
|
10729
|
+
fill: "currentColor",
|
|
10730
|
+
d: "M2 12c0-.5523.4477-1 1-1h7v2h-7c-.5523 0-1-.4477-1-1ZM17 11h4c.5523 0 1 .4477 1 1"
|
|
10731
|
+
}
|
|
10732
|
+
)
|
|
10733
|
+
);
|
|
10734
|
+
}
|
|
10735
|
+
);
|
|
10736
|
+
IconProtoSlider[iconSymbol] = true;
|
|
10737
|
+
|
|
10738
|
+
const IconPrototype = forwardRef(
|
|
10739
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
10740
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
10741
|
+
return createElement(
|
|
10742
|
+
StyledIcon,
|
|
10743
|
+
{
|
|
10744
|
+
...props,
|
|
10745
|
+
weight,
|
|
10746
|
+
debug,
|
|
10747
|
+
size,
|
|
10748
|
+
viewBox: "0 0 24 24",
|
|
10749
|
+
fill: "none",
|
|
10750
|
+
ref: forwardRef2
|
|
10751
|
+
},
|
|
10752
|
+
/* @__PURE__ */ jsx(
|
|
10753
|
+
"path",
|
|
10754
|
+
{
|
|
10755
|
+
fill: "currentColor",
|
|
10756
|
+
fillRule: "evenodd",
|
|
10757
|
+
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",
|
|
10758
|
+
clipRule: "evenodd"
|
|
10759
|
+
}
|
|
10760
|
+
)
|
|
10761
|
+
);
|
|
10762
|
+
}
|
|
10763
|
+
);
|
|
10764
|
+
IconPrototype[iconSymbol] = true;
|
|
10765
|
+
|
|
10143
10766
|
const IconPushPinFilled = forwardRef(
|
|
10144
10767
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
10145
10768
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -10387,6 +11010,34 @@ const IconRectangleDashLines = forwardRef(
|
|
|
10387
11010
|
);
|
|
10388
11011
|
IconRectangleDashLines[iconSymbol] = true;
|
|
10389
11012
|
|
|
11013
|
+
const IconRectangleDotLarge = forwardRef(
|
|
11014
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
11015
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
11016
|
+
return createElement(
|
|
11017
|
+
StyledIcon,
|
|
11018
|
+
{
|
|
11019
|
+
...props,
|
|
11020
|
+
weight,
|
|
11021
|
+
debug,
|
|
11022
|
+
size,
|
|
11023
|
+
viewBox: "0 0 24 24",
|
|
11024
|
+
fill: "none",
|
|
11025
|
+
ref: forwardRef2
|
|
11026
|
+
},
|
|
11027
|
+
/* @__PURE__ */ jsx(
|
|
11028
|
+
"path",
|
|
11029
|
+
{
|
|
11030
|
+
fill: "currentColor",
|
|
11031
|
+
fillRule: "evenodd",
|
|
11032
|
+
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",
|
|
11033
|
+
clipRule: "evenodd"
|
|
11034
|
+
}
|
|
11035
|
+
)
|
|
11036
|
+
);
|
|
11037
|
+
}
|
|
11038
|
+
);
|
|
11039
|
+
IconRectangleDotLarge[iconSymbol] = true;
|
|
11040
|
+
|
|
10390
11041
|
const IconRectangleDotLinePen = forwardRef(
|
|
10391
11042
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
10392
11043
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -10432,6 +11083,62 @@ const IconRectangleDotLinePen = forwardRef(
|
|
|
10432
11083
|
);
|
|
10433
11084
|
IconRectangleDotLinePen[iconSymbol] = true;
|
|
10434
11085
|
|
|
11086
|
+
const IconRectangleDotMedium = forwardRef(
|
|
11087
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
11088
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
11089
|
+
return createElement(
|
|
11090
|
+
StyledIcon,
|
|
11091
|
+
{
|
|
11092
|
+
...props,
|
|
11093
|
+
weight,
|
|
11094
|
+
debug,
|
|
11095
|
+
size,
|
|
11096
|
+
viewBox: "0 0 24 24",
|
|
11097
|
+
fill: "none",
|
|
11098
|
+
ref: forwardRef2
|
|
11099
|
+
},
|
|
11100
|
+
/* @__PURE__ */ jsx(
|
|
11101
|
+
"path",
|
|
11102
|
+
{
|
|
11103
|
+
fill: "currentColor",
|
|
11104
|
+
fillRule: "evenodd",
|
|
11105
|
+
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",
|
|
11106
|
+
clipRule: "evenodd"
|
|
11107
|
+
}
|
|
11108
|
+
)
|
|
11109
|
+
);
|
|
11110
|
+
}
|
|
11111
|
+
);
|
|
11112
|
+
IconRectangleDotMedium[iconSymbol] = true;
|
|
11113
|
+
|
|
11114
|
+
const IconRectangleDotSmall = forwardRef(
|
|
11115
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
11116
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
11117
|
+
return createElement(
|
|
11118
|
+
StyledIcon,
|
|
11119
|
+
{
|
|
11120
|
+
...props,
|
|
11121
|
+
weight,
|
|
11122
|
+
debug,
|
|
11123
|
+
size,
|
|
11124
|
+
viewBox: "0 0 24 24",
|
|
11125
|
+
fill: "none",
|
|
11126
|
+
ref: forwardRef2
|
|
11127
|
+
},
|
|
11128
|
+
/* @__PURE__ */ jsx(
|
|
11129
|
+
"path",
|
|
11130
|
+
{
|
|
11131
|
+
fill: "currentColor",
|
|
11132
|
+
fillRule: "evenodd",
|
|
11133
|
+
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",
|
|
11134
|
+
clipRule: "evenodd"
|
|
11135
|
+
}
|
|
11136
|
+
)
|
|
11137
|
+
);
|
|
11138
|
+
}
|
|
11139
|
+
);
|
|
11140
|
+
IconRectangleDotSmall[iconSymbol] = true;
|
|
11141
|
+
|
|
10435
11142
|
const IconRectangleFrame2Lines = forwardRef(
|
|
10436
11143
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
10437
11144
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -11350,6 +12057,34 @@ const IconShieldCheck = forwardRef(
|
|
|
11350
12057
|
);
|
|
11351
12058
|
IconShieldCheck[iconSymbol] = true;
|
|
11352
12059
|
|
|
12060
|
+
const IconShieldLockFilled = forwardRef(
|
|
12061
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
12062
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
12063
|
+
return createElement(
|
|
12064
|
+
StyledIcon,
|
|
12065
|
+
{
|
|
12066
|
+
...props,
|
|
12067
|
+
weight,
|
|
12068
|
+
debug,
|
|
12069
|
+
size,
|
|
12070
|
+
viewBox: "0 0 24 24",
|
|
12071
|
+
fill: "none",
|
|
12072
|
+
ref: forwardRef2
|
|
12073
|
+
},
|
|
12074
|
+
/* @__PURE__ */ jsx(
|
|
12075
|
+
"path",
|
|
12076
|
+
{
|
|
12077
|
+
fill: "currentColor",
|
|
12078
|
+
fillRule: "evenodd",
|
|
12079
|
+
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",
|
|
12080
|
+
clipRule: "evenodd"
|
|
12081
|
+
}
|
|
12082
|
+
)
|
|
12083
|
+
);
|
|
12084
|
+
}
|
|
12085
|
+
);
|
|
12086
|
+
IconShieldLockFilled[iconSymbol] = true;
|
|
12087
|
+
|
|
11353
12088
|
const IconShieldLock = forwardRef(
|
|
11354
12089
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
11355
12090
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -11609,6 +12344,34 @@ const IconSingleSparksFilled = forwardRef(
|
|
|
11609
12344
|
);
|
|
11610
12345
|
IconSingleSparksFilled[iconSymbol] = true;
|
|
11611
12346
|
|
|
12347
|
+
const IconSlide = forwardRef(
|
|
12348
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
12349
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
12350
|
+
return createElement(
|
|
12351
|
+
StyledIcon,
|
|
12352
|
+
{
|
|
12353
|
+
...props,
|
|
12354
|
+
weight,
|
|
12355
|
+
debug,
|
|
12356
|
+
size,
|
|
12357
|
+
viewBox: "0 0 24 24",
|
|
12358
|
+
fill: "none",
|
|
12359
|
+
ref: forwardRef2
|
|
12360
|
+
},
|
|
12361
|
+
/* @__PURE__ */ jsx(
|
|
12362
|
+
"path",
|
|
12363
|
+
{
|
|
12364
|
+
fill: "currentColor",
|
|
12365
|
+
fillRule: "evenodd",
|
|
12366
|
+
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",
|
|
12367
|
+
clipRule: "evenodd"
|
|
12368
|
+
}
|
|
12369
|
+
)
|
|
12370
|
+
);
|
|
12371
|
+
}
|
|
12372
|
+
);
|
|
12373
|
+
IconSlide[iconSymbol] = true;
|
|
12374
|
+
|
|
11612
12375
|
const IconSlidersX = forwardRef(
|
|
11613
12376
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
11614
12377
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -12343,7 +13106,7 @@ const IconSparks = forwardRef(
|
|
|
12343
13106
|
"path",
|
|
12344
13107
|
{
|
|
12345
13108
|
fill: "currentColor",
|
|
12346
|
-
d: "M19.7722 2.5045c.
|
|
13109
|
+
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"
|
|
12347
13110
|
}
|
|
12348
13111
|
),
|
|
12349
13112
|
/* @__PURE__ */ jsx(
|
|
@@ -13754,19 +14517,52 @@ const IconSwitch = forwardRef(
|
|
|
13754
14517
|
/* @__PURE__ */ jsx(
|
|
13755
14518
|
"path",
|
|
13756
14519
|
{
|
|
13757
|
-
|
|
13758
|
-
|
|
13759
|
-
|
|
13760
|
-
|
|
13761
|
-
d: "M7 18c-7 0-7-11 0-11h10c7 0 7 11 0 11h-10Z"
|
|
14520
|
+
fill: "currentColor",
|
|
14521
|
+
fillRule: "evenodd",
|
|
14522
|
+
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",
|
|
14523
|
+
clipRule: "evenodd"
|
|
13762
14524
|
}
|
|
13763
14525
|
),
|
|
13764
|
-
/* @__PURE__ */ jsx(
|
|
14526
|
+
/* @__PURE__ */ jsx(
|
|
14527
|
+
"path",
|
|
14528
|
+
{
|
|
14529
|
+
fill: "currentColor",
|
|
14530
|
+
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"
|
|
14531
|
+
}
|
|
14532
|
+
)
|
|
13765
14533
|
);
|
|
13766
14534
|
}
|
|
13767
14535
|
);
|
|
13768
14536
|
IconSwitch[iconSymbol] = true;
|
|
13769
14537
|
|
|
14538
|
+
const IconTable = forwardRef(
|
|
14539
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
14540
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
14541
|
+
return createElement(
|
|
14542
|
+
StyledIcon,
|
|
14543
|
+
{
|
|
14544
|
+
...props,
|
|
14545
|
+
weight,
|
|
14546
|
+
debug,
|
|
14547
|
+
size,
|
|
14548
|
+
viewBox: "0 0 24 24",
|
|
14549
|
+
fill: "none",
|
|
14550
|
+
ref: forwardRef2
|
|
14551
|
+
},
|
|
14552
|
+
/* @__PURE__ */ jsx(
|
|
14553
|
+
"path",
|
|
14554
|
+
{
|
|
14555
|
+
fill: "currentColor",
|
|
14556
|
+
fillRule: "evenodd",
|
|
14557
|
+
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",
|
|
14558
|
+
clipRule: "evenodd"
|
|
14559
|
+
}
|
|
14560
|
+
)
|
|
14561
|
+
);
|
|
14562
|
+
}
|
|
14563
|
+
);
|
|
14564
|
+
IconTable[iconSymbol] = true;
|
|
14565
|
+
|
|
13770
14566
|
const IconTag = forwardRef(
|
|
13771
14567
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
13772
14568
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -14657,6 +15453,34 @@ const IconTicket = forwardRef(
|
|
|
14657
15453
|
);
|
|
14658
15454
|
IconTicket[iconSymbol] = true;
|
|
14659
15455
|
|
|
15456
|
+
const IconTimeline = forwardRef(
|
|
15457
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
15458
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
15459
|
+
return createElement(
|
|
15460
|
+
StyledIcon,
|
|
15461
|
+
{
|
|
15462
|
+
...props,
|
|
15463
|
+
weight,
|
|
15464
|
+
debug,
|
|
15465
|
+
size,
|
|
15466
|
+
viewBox: "0 0 24 24",
|
|
15467
|
+
fill: "none",
|
|
15468
|
+
ref: forwardRef2
|
|
15469
|
+
},
|
|
15470
|
+
/* @__PURE__ */ jsx(
|
|
15471
|
+
"path",
|
|
15472
|
+
{
|
|
15473
|
+
fill: "currentColor",
|
|
15474
|
+
fillRule: "evenodd",
|
|
15475
|
+
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",
|
|
15476
|
+
clipRule: "evenodd"
|
|
15477
|
+
}
|
|
15478
|
+
)
|
|
15479
|
+
);
|
|
15480
|
+
}
|
|
15481
|
+
);
|
|
15482
|
+
IconTimeline[iconSymbol] = true;
|
|
15483
|
+
|
|
14660
15484
|
const IconTimer = forwardRef(
|
|
14661
15485
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
14662
15486
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -15809,5 +16633,5 @@ const IconWallet = forwardRef(
|
|
|
15809
16633
|
);
|
|
15810
16634
|
IconWallet[iconSymbol] = true;
|
|
15811
16635
|
|
|
15812
|
-
export { IconActivity, IconAddLineBottom, IconAddLineRight, IconAlignBottom, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignRight, IconAlignTop, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpLeft, IconArrowBendUpRight, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowElbowDownRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArrowsSquareCounterClockwiseY, IconArticle, IconAt, IconBadge, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrush, IconCalendarBlank, IconCamera, IconCard, IconCardCircles, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatCheck, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesDot, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronRightSmall, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCloud, IconCluster, IconClustered, IconCog, IconCoins, IconCoinsChecked, IconCoinsSlash, IconColumnsThree, IconCommentGroup, IconConeSerpentine, IconConnectionLineElbows, IconConnectionLineStraight, IconCornersThreeEyeOpen, IconCounter, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCrossFat, IconCrossSquare, IconCube, IconCursor, IconCursorFilled, IconCursorLines, IconCursorText, IconCursorTextLines, IconCurveSquareCircleArrow, IconDashLeftDownSquareDashRightUp, IconDashLeftUpSquareDashDownRight, IconDashSquareDashHorizontal, IconDashSquareDashVertical, IconDiagramCardLarge1, IconDiagramCardLarge2, IconDiagramCardLarge3, IconDiagramCardLarge4, IconDiagramCardMagnifyingGlass, IconDiagramCardSmall1, IconDiagramCardSmall2, IconDiagramCardSmall3, IconDiagramCardTeam, IconDiagramCardUser, IconDistributeHorizontal, IconDistributeVertical, IconDollarSignCurrency, IconDotVoting, IconDotsNine, IconDotsSixHorizontal, IconDotsSixVertical, IconDotsThree, IconDotsThreeVertical, IconDotsTwo, IconDownload, IconEnvelope, IconEraser, IconExclamationMarkOctagon, IconExclamationPointCircle, IconExport, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFileSpreadsheet, IconFlag, IconFolder, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGavel, IconGift, IconGlobe, IconGraduationCap, IconGrid, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHandPointing, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHexagon, IconHighlighter, IconHighlighterUnderline, IconHouse, IconImage, IconIndentLeft, IconIndentRight, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightbox, IconLightbulb, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLineTwoDiagonalTopRightDouble, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLinesTopLeftColumnsTwo, IconLink, IconLinkPlus, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconLogin, IconLogout, IconMagnet, IconMagnifyingGlass, IconMagnifyingGlassLightning, IconMagnifyingGlassPlus, IconMap, IconMegaphone, IconMermaid, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMobile, IconMonitorArrow, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconMusicNote, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconNotepad, IconOctagon, IconOffice, IconOrgChart, IconPaintBucket, IconPalette, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenTip, IconPenUnderline, IconPentagon, IconPeopleList, IconPlaceholder, IconPlanet, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusBox, IconPlusSquare, IconPlusText, IconPolling, IconPresentationArrow, IconPresentationEyeOpen, IconPresentationLine, IconPresentationLinesTwo, IconPresentationLink, IconPresentationNumberOne, IconPresentationPlay, IconPresentationPlus, IconPrevious, IconProhibit, IconPushPin, IconPushPinFilled, IconQuestionMark, IconQuestionMarkCircle, IconQuotes, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLinePen, IconRectangleFrame2Lines, IconRectanglePlayStack, IconRectanglePortrait, IconRectanglePortraitDash, IconRectanglePortraitDashSquareTopCenter, IconRectanglePortraitDashSquareTopLeft, IconRectanglePortraitFilled, IconRectanglePortraitSquareTopLeft, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRocket, IconRss, IconRssRectangle, IconScissors, IconScrollbarXy, IconShadow, IconShapes, IconShapesLines, IconShieldCheck, IconShieldLock, IconShuffle, IconSidebarClosed, IconSidebarGlobalClosed, IconSidebarGlobalOpen, IconSidebarOpen, IconSingleSparksFilled, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialAdo, IconSocialDrawio, IconSocialFacebook, IconSocialInstagram, IconSocialJira, IconSocialLinkedin, IconSocialSlack, IconSocialTwitter, IconSocialX, IconSocialYoutube, IconSortAscending, IconSortDescending, IconSparks, IconSparksFilled, IconSpeakerCross, IconSpeakerHigh, IconSpinner, IconSplitVertical, IconSquare, IconSquareArrowIn, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareFrame2LinesCircle, IconSquareLineSquareDashed, IconSquareRounded, IconSquareStarScribble, IconSquareTriangleCirclePlus, IconSquaresColumn, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresRow, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStar, IconStarFilled, IconStarHalf, IconStickyCorners, IconStickyEyeClosed, IconStickyEyeOpen, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconStoryPoints, IconStroke1, IconStroke2, IconStroke3, IconStroke4, IconStroke5, IconStroke6, IconSwitch, IconTag, IconTasks, IconTextAUnderline, IconTextAa, IconTextAlignCenter, IconTextAlignLeft, IconTextAlignRight, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextCursorEyeOpen, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLineHeight, IconTextLinesThree, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTickCircle, IconTicket, IconTimer, IconToolbar, IconTooltip, IconTrackpad, IconTrapeze, IconTrash, IconTrashSimple, IconTriangle, IconTriangleSquareCircle, IconTrident, IconTrophy, IconTshirt, IconUser, IconUserAdd, IconUserArrowRightUp, IconUserBackgroundBlur, IconUserCog, IconUserCogPlus, IconUserEyeOpen, IconUserFilter, IconUserLoad, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVideoCamera, IconVideoCameraSimple, IconVideoCameraSimpleError, IconVideoCameraSimpleSlash, IconViewCenter, IconViewSideLeft, IconWallet };
|
|
16636
|
+
export { IconActivity, IconAddLineBottom, IconAddLineRight, IconAlignBottom, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignRight, IconAlignTop, IconAlignmentScale, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpLeft, IconArrowBendUpRight, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowElbowDownRight, IconArrowFatLeft, IconArrowFatLeftRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArrowsSquareCounterClockwiseY, IconArrowsTimeBackward, IconArrowsTimeForward, IconArticle, IconAt, IconBadge, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBoxCaptions, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrush, IconCalendarBlank, IconCamera, IconCard, IconCardCircles, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatCheck, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesDot, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronRightSmall, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCloud, IconCluster, IconClustered, IconCog, IconCoins, IconCoinsChecked, IconCoinsSlash, IconColumns, IconColumnsThree, IconCommentGroup, IconConeSerpentine, IconConnectionLineElbows, IconConnectionLineStraight, IconCornersThreeEyeOpen, IconCounter, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCrossFat, IconCrossSquare, IconCube, IconCursor, IconCursorFilled, IconCursorLines, IconCursorText, IconCursorTextLines, IconCurveSquareCircleArrow, IconDashLeftDownSquareDashRightUp, IconDashLeftUpSquareDashDownRight, IconDashSquareDashHorizontal, IconDashSquareDashVertical, IconDiagramCardLarge1, IconDiagramCardLarge2, IconDiagramCardLarge3, IconDiagramCardLarge4, IconDiagramCardMagnifyingGlass, IconDiagramCardSmall1, IconDiagramCardSmall2, IconDiagramCardSmall3, IconDiagramCardTeam, IconDiagramCardUser, IconDiagramming, IconDistributeHorizontal, IconDistributeVertical, IconDoc, IconDollarSignCurrency, IconDotVoting, IconDotsNine, IconDotsSixHorizontal, IconDotsSixVertical, IconDotsThree, IconDotsThreeVertical, IconDotsTwo, IconDownload, IconEnvelope, IconEraser, IconExclamationMarkOctagon, IconExclamationPointCircle, IconExport, IconExternal, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFileSpreadsheet, IconFlag, IconFolder, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGavel, IconGift, IconGlobe, IconGraduationCap, IconGrid, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHandPointing, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHexagon, IconHighlighter, IconHighlighterUnderline, IconHouse, IconImage, IconIndentLeft, IconIndentRight, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightbox, IconLightbulb, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLineTwoDiagonalTopRightDouble, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLinesTopLeftColumnsTwo, IconLink, IconLinkPlus, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconLogin, IconLogout, IconMagnet, IconMagnifyingGlass, IconMagnifyingGlassLightning, IconMagnifyingGlassPlus, IconMap, IconMegaphone, IconMermaid, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMobile, IconMonitorArrow, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconMusicNote, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconNotepad, IconOctagon, IconOffice, IconOrgChart, IconPaintBucket, IconPalette, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenTip, IconPenUnderline, IconPentagon, IconPeopleList, IconPlaceholder, IconPlanet, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusBox, IconPlusSquare, IconPlusText, IconPolling, IconPresentationArrow, IconPresentationEyeOpen, IconPresentationLine, IconPresentationLinesTwo, IconPresentationLink, IconPresentationNumberOne, IconPresentationPlay, IconPresentationPlus, IconPrevious, IconProhibit, IconProtoButton, IconProtoCheckbox, IconProtoDropdown, IconProtoInput, IconProtoNumber, IconProtoRadio, IconProtoSlider, IconPrototype, IconPushPin, IconPushPinFilled, IconQuestionMark, IconQuestionMarkCircle, IconQuotes, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLarge, IconRectangleDotLinePen, IconRectangleDotMedium, IconRectangleDotSmall, IconRectangleFrame2Lines, IconRectanglePlayStack, IconRectanglePortrait, IconRectanglePortraitDash, IconRectanglePortraitDashSquareTopCenter, IconRectanglePortraitDashSquareTopLeft, IconRectanglePortraitFilled, IconRectanglePortraitSquareTopLeft, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRocket, IconRss, IconRssRectangle, IconScissors, IconScrollbarXy, IconShadow, IconShapes, IconShapesLines, IconShieldCheck, IconShieldLock, IconShieldLockFilled, IconShuffle, IconSidebarClosed, IconSidebarGlobalClosed, IconSidebarGlobalOpen, IconSidebarOpen, IconSingleSparksFilled, IconSlide, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialAdo, IconSocialDrawio, IconSocialFacebook, IconSocialInstagram, IconSocialJira, IconSocialLinkedin, IconSocialSlack, IconSocialTwitter, IconSocialX, IconSocialYoutube, IconSortAscending, IconSortDescending, IconSparks, IconSparksFilled, IconSpeakerCross, IconSpeakerHigh, IconSpinner, IconSplitVertical, IconSquare, IconSquareArrowIn, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareFrame2LinesCircle, IconSquareLineSquareDashed, IconSquareRounded, IconSquareStarScribble, IconSquareTriangleCirclePlus, IconSquaresColumn, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresRow, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStar, IconStarFilled, IconStarHalf, IconStickyCorners, IconStickyEyeClosed, IconStickyEyeOpen, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconStoryPoints, IconStroke1, IconStroke2, IconStroke3, IconStroke4, IconStroke5, IconStroke6, IconSwitch, IconTable, IconTag, IconTasks, IconTextAUnderline, IconTextAa, IconTextAlignCenter, IconTextAlignLeft, IconTextAlignRight, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextCursorEyeOpen, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLineHeight, IconTextLinesThree, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTickCircle, IconTicket, IconTimeline, IconTimer, IconToolbar, IconTooltip, IconTrackpad, IconTrapeze, IconTrash, IconTrashSimple, IconTriangle, IconTriangleSquareCircle, IconTrident, IconTrophy, IconTshirt, IconUser, IconUserAdd, IconUserArrowRightUp, IconUserBackgroundBlur, IconUserCog, IconUserCogPlus, IconUserEyeOpen, IconUserFilter, IconUserLoad, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVideoCamera, IconVideoCameraSimple, IconVideoCameraSimpleError, IconVideoCameraSimpleSlash, IconViewCenter, IconViewSideLeft, IconWallet };
|
|
15813
16637
|
//# sourceMappingURL=module.js.map
|