@mirohq/design-system-icons 0.6.0 → 0.7.1-checkbox.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 +842 -1
- package/dist/main.js.map +1 -1
- package/dist/module.js +812 -2
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +73 -1
- package/package.json +4 -4
- package/react/cube.tsx +34 -0
- package/react/cursor-text.tsx +34 -0
- package/react/curve-square-circle-arrow.tsx +34 -0
- package/react/eraser.tsx +34 -0
- package/react/eyedropper.tsx +31 -0
- package/react/highlighter-underline.tsx +25 -0
- package/react/highlighter.tsx +34 -0
- package/react/index.ts +31 -0
- package/react/lasso.tsx +34 -0
- package/react/line-curved.tsx +34 -0
- package/react/line-dashed.tsx +34 -0
- package/react/line-dotted.tsx +28 -0
- package/react/line-horizontal.tsx +34 -0
- package/react/line-orthogonal.tsx +34 -0
- package/react/line-straight.tsx +34 -0
- package/react/list-bullets.tsx +31 -0
- package/react/list-numbers.tsx +34 -0
- package/react/minus.tsx +1 -1
- package/react/pen-tip.tsx +34 -0
- package/react/pen.tsx +34 -0
- package/react/plus-text.tsx +34 -0
- package/react/prohibit.tsx +32 -0
- package/react/text-a-underline.tsx +25 -0
- package/react/text-align-center.tsx +34 -0
- package/react/text-align-left.tsx +34 -0
- package/react/text-b-bold-italic-underlined.tsx +24 -0
- package/react/text-b-bold.tsx +34 -0
- package/react/text-i-italic.tsx +33 -0
- package/react/text-indent.tsx +34 -0
- package/react/text-lines-three.tsx +34 -0
- package/react/text-s-strikethrough.tsx +34 -0
- package/react/text-styles.tsx +33 -0
- package/react/text-u-underlined.tsx +34 -0
- package/svg/24/cube.svg +1 -0
- package/svg/24/cursor-text.svg +1 -0
- package/svg/24/curve-square-circle-arrow.svg +1 -0
- package/svg/24/eraser.svg +1 -0
- package/svg/24/eyedropper.svg +1 -0
- package/svg/24/highlighter-underline.svg +1 -0
- package/svg/24/highlighter.svg +1 -0
- package/svg/24/lasso.svg +1 -0
- package/svg/24/line-curved.svg +1 -0
- package/svg/24/line-dashed.svg +1 -0
- package/svg/24/line-dotted.svg +1 -0
- package/svg/24/line-horizontal.svg +1 -0
- package/svg/24/line-orthogonal.svg +1 -0
- package/svg/24/line-straight.svg +1 -0
- package/svg/24/list-bullets.svg +1 -0
- package/svg/24/list-numbers.svg +1 -0
- package/svg/24/minus.svg +1 -1
- package/svg/24/pen-tip.svg +1 -0
- package/svg/24/pen.svg +1 -0
- package/svg/24/plus-text.svg +1 -0
- package/svg/24/prohibit.svg +1 -0
- package/svg/24/text-a-underline.svg +1 -0
- package/svg/24/text-align-center.svg +1 -0
- package/svg/24/text-align-left.svg +1 -0
- package/svg/24/text-b-bold-italic-underlined.svg +1 -0
- package/svg/24/text-b-bold.svg +1 -0
- package/svg/24/text-i-italic.svg +1 -0
- package/svg/24/text-indent.svg +1 -0
- package/svg/24/text-lines-three.svg +1 -0
- package/svg/24/text-s-strikethrough.svg +1 -0
- package/svg/24/text-styles.svg +1 -0
- package/svg/24/text-u-underlined.svg +1 -0
- package/svg/meta.json +225 -0
package/dist/main.js
CHANGED
|
@@ -1446,6 +1446,33 @@ const IconCross = React.forwardRef(
|
|
|
1446
1446
|
)
|
|
1447
1447
|
);
|
|
1448
1448
|
|
|
1449
|
+
const IconCube = React.forwardRef(
|
|
1450
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1451
|
+
StyledIcon,
|
|
1452
|
+
{
|
|
1453
|
+
...props,
|
|
1454
|
+
size,
|
|
1455
|
+
viewBox: "0 0 24 24",
|
|
1456
|
+
fill: "none",
|
|
1457
|
+
ref: forwardRef2
|
|
1458
|
+
},
|
|
1459
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
1460
|
+
clipPath: "url(#a)"
|
|
1461
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1462
|
+
stroke: "currentColor",
|
|
1463
|
+
strokeLinecap: "round",
|
|
1464
|
+
strokeLinejoin: "round",
|
|
1465
|
+
strokeWidth: 2,
|
|
1466
|
+
d: "m21 7-9-3-9 3m18 0-9 3m9-3v11l-9 3m0-11L3 7m9 3v11M3 7v11l9 3"
|
|
1467
|
+
})),
|
|
1468
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1469
|
+
id: "a"
|
|
1470
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1471
|
+
d: "M0 0h24v24H0z"
|
|
1472
|
+
})))
|
|
1473
|
+
)
|
|
1474
|
+
);
|
|
1475
|
+
|
|
1449
1476
|
const IconCursorFilled = React.forwardRef(
|
|
1450
1477
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1451
1478
|
StyledIcon,
|
|
@@ -1469,6 +1496,33 @@ const IconCursorFilled = React.forwardRef(
|
|
|
1469
1496
|
)
|
|
1470
1497
|
);
|
|
1471
1498
|
|
|
1499
|
+
const IconCursorText = React.forwardRef(
|
|
1500
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1501
|
+
StyledIcon,
|
|
1502
|
+
{
|
|
1503
|
+
...props,
|
|
1504
|
+
size,
|
|
1505
|
+
viewBox: "0 0 24 24",
|
|
1506
|
+
fill: "none",
|
|
1507
|
+
ref: forwardRef2
|
|
1508
|
+
},
|
|
1509
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
1510
|
+
clipPath: "url(#a)"
|
|
1511
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1512
|
+
stroke: "currentColor",
|
|
1513
|
+
strokeLinecap: "round",
|
|
1514
|
+
strokeLinejoin: "round",
|
|
1515
|
+
strokeWidth: 2,
|
|
1516
|
+
d: "M7 5h3a2 2 0 0 1 2 2m0 0v10m0-10a2 2 0 0 1 2-2h3m-5 12a2 2 0 0 1-2 2H7m5-2a2 2 0 0 0 2 2h3"
|
|
1517
|
+
})),
|
|
1518
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1519
|
+
id: "a"
|
|
1520
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1521
|
+
d: "M0 0h24v24H0z"
|
|
1522
|
+
})))
|
|
1523
|
+
)
|
|
1524
|
+
);
|
|
1525
|
+
|
|
1472
1526
|
const IconCursor = React.forwardRef(
|
|
1473
1527
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1474
1528
|
StyledIcon,
|
|
@@ -1495,6 +1549,33 @@ const IconCursor = React.forwardRef(
|
|
|
1495
1549
|
)
|
|
1496
1550
|
);
|
|
1497
1551
|
|
|
1552
|
+
const IconCurveSquareCircleArrow = React.forwardRef(
|
|
1553
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1554
|
+
StyledIcon,
|
|
1555
|
+
{
|
|
1556
|
+
...props,
|
|
1557
|
+
size,
|
|
1558
|
+
viewBox: "0 0 24 24",
|
|
1559
|
+
fill: "none",
|
|
1560
|
+
ref: forwardRef2
|
|
1561
|
+
},
|
|
1562
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
1563
|
+
clipPath: "url(#a)"
|
|
1564
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1565
|
+
stroke: "currentColor",
|
|
1566
|
+
strokeLinecap: "round",
|
|
1567
|
+
strokeLinejoin: "round",
|
|
1568
|
+
strokeWidth: 2,
|
|
1569
|
+
d: "M11 6h-1a4 4 0 0 0-4 4v1m8 7h8m0 0-2-3m2 3-2 3m-10-3a4 4 0 1 1-8 0 4 4 0 0 1 8 0Zm6-16h4a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2Z"
|
|
1570
|
+
})),
|
|
1571
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1572
|
+
id: "a"
|
|
1573
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1574
|
+
d: "M0 0h24v24H0z"
|
|
1575
|
+
})))
|
|
1576
|
+
)
|
|
1577
|
+
);
|
|
1578
|
+
|
|
1498
1579
|
const IconDistributeHorizontal = React.forwardRef(
|
|
1499
1580
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1500
1581
|
StyledIcon,
|
|
@@ -1569,6 +1650,33 @@ const IconEnvelope = React.forwardRef(
|
|
|
1569
1650
|
)
|
|
1570
1651
|
);
|
|
1571
1652
|
|
|
1653
|
+
const IconEraser = React.forwardRef(
|
|
1654
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1655
|
+
StyledIcon,
|
|
1656
|
+
{
|
|
1657
|
+
...props,
|
|
1658
|
+
size,
|
|
1659
|
+
viewBox: "0 0 24 24",
|
|
1660
|
+
fill: "none",
|
|
1661
|
+
ref: forwardRef2
|
|
1662
|
+
},
|
|
1663
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
1664
|
+
clipPath: "url(#a)"
|
|
1665
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1666
|
+
stroke: "currentColor",
|
|
1667
|
+
strokeLinecap: "round",
|
|
1668
|
+
strokeLinejoin: "round",
|
|
1669
|
+
strokeWidth: 2,
|
|
1670
|
+
d: "M18 20h-6m0 0H6.828a2 2 0 0 1-1.414-.586l-2-2a2 2 0 0 1 0-2.828L11 7m1 13 6-6m0 0 2.586-2.586a2 2 0 0 0 0-2.828l-4.172-4.172a2 2 0 0 0-2.828 0L11 7m7 7-7-7"
|
|
1671
|
+
})),
|
|
1672
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1673
|
+
id: "a"
|
|
1674
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1675
|
+
d: "M0 0h24v24H0z"
|
|
1676
|
+
})))
|
|
1677
|
+
)
|
|
1678
|
+
);
|
|
1679
|
+
|
|
1572
1680
|
const IconExclamationPointCircle = React.forwardRef(
|
|
1573
1681
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1574
1682
|
StyledIcon,
|
|
@@ -1592,6 +1700,30 @@ const IconExclamationPointCircle = React.forwardRef(
|
|
|
1592
1700
|
)
|
|
1593
1701
|
);
|
|
1594
1702
|
|
|
1703
|
+
const IconEyedropper = React.forwardRef(
|
|
1704
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1705
|
+
StyledIcon,
|
|
1706
|
+
{
|
|
1707
|
+
...props,
|
|
1708
|
+
size,
|
|
1709
|
+
viewBox: "0 0 24 24",
|
|
1710
|
+
fill: "none",
|
|
1711
|
+
ref: forwardRef2
|
|
1712
|
+
},
|
|
1713
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1714
|
+
stroke: "currentColor",
|
|
1715
|
+
strokeLinecap: "round",
|
|
1716
|
+
strokeLinejoin: "round",
|
|
1717
|
+
strokeWidth: 2,
|
|
1718
|
+
d: "m12 6 1.5 1.5M18 12l-1.5-1.5m-3-3-10 10L3 21l3.5-.5 10-10m-3-3 3 3"
|
|
1719
|
+
}),
|
|
1720
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1721
|
+
fill: "currentColor",
|
|
1722
|
+
d: "m13 7 3-3a2.828 2.828 0 1 1 4 4l-3 3-4-4ZM4 17.5 6.5 20H4v-2.5Z"
|
|
1723
|
+
})
|
|
1724
|
+
)
|
|
1725
|
+
);
|
|
1726
|
+
|
|
1595
1727
|
const IconFactoryHouse = React.forwardRef(
|
|
1596
1728
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1597
1729
|
StyledIcon,
|
|
@@ -1839,6 +1971,58 @@ const IconHand = React.forwardRef(
|
|
|
1839
1971
|
)
|
|
1840
1972
|
);
|
|
1841
1973
|
|
|
1974
|
+
const IconHighlighterUnderline = React.forwardRef(
|
|
1975
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1976
|
+
StyledIcon,
|
|
1977
|
+
{
|
|
1978
|
+
...props,
|
|
1979
|
+
size,
|
|
1980
|
+
viewBox: "0 0 24 24",
|
|
1981
|
+
fill: "none",
|
|
1982
|
+
ref: forwardRef2
|
|
1983
|
+
},
|
|
1984
|
+
/* @__PURE__ */ React__default["default"].createElement("rect", {
|
|
1985
|
+
width: 18,
|
|
1986
|
+
height: 2,
|
|
1987
|
+
x: 3,
|
|
1988
|
+
y: 20,
|
|
1989
|
+
fill: "currentColor",
|
|
1990
|
+
rx: 0.5
|
|
1991
|
+
}),
|
|
1992
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1993
|
+
fill: "currentColor",
|
|
1994
|
+
d: "M9 17v-1h-.414l-.293.293L9 17Zm2 0v1h.42l.294-.3L11 17Zm1-10-.707-.707L12 7Zm-5.5 5.5-.707-.707-.214.214-.06.297.981.196ZM6 15l.707.707.214-.214.06-.297L6 15Zm-2 2-.707-.707-.293.293V17h1Zm0 1H3v1h1v-1Zm4 0v1h.414l.293-.293L8 18ZM21 7l.69.724a1 1 0 0 0 .017-1.431L21 7Zm-4.5-4.5.707-.707a1 1 0 0 0-1.414 0l.707.707ZM9.25 9.75l.707.707-.707-.707ZM9 18h2v-2H9v2Zm-3.48-5.696-.5 2.5 1.96.392.5-2.5-1.96-.392ZM3 17v1h2v-1H3Zm1 2h4v-2H4v2Zm4.707-.293 1-1-1.414-1.414-1 1 1.414 1.414Zm13-12.414-4.5-4.5-1.414 1.414 4.5 4.5 1.414-1.414Zm-1.397-.017-3 2.857 1.38 1.448 3-2.857-1.38-1.448Zm-3.024 2.881-7 7.143 1.428 1.4 7-7.143-1.428-1.4Zm-4.579-1.45 1.5-1.5-1.414-1.414-1.5 1.5 1.414 1.414Zm1.5-1.5 3-3-1.414-1.414-3 3 1.414 1.414Zm4.489 2.932-4.5-4.357-1.392 1.436 4.5 4.358 1.392-1.437Zm-7.403-2.846-2.75 2.75 1.414 1.414 2.75-2.75-1.414-1.414Zm-2.75 2.75-2.75 2.75 1.414 1.414 2.75-2.75-1.414-1.414Zm-3.25 5.25-1 1 1.414 1.414 1-1-1.414-1.414Zm-1 1-1 1 1.414 1.414 1-1-1.414-1.414Z"
|
|
1995
|
+
})
|
|
1996
|
+
)
|
|
1997
|
+
);
|
|
1998
|
+
|
|
1999
|
+
const IconHighlighter = React.forwardRef(
|
|
2000
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2001
|
+
StyledIcon,
|
|
2002
|
+
{
|
|
2003
|
+
...props,
|
|
2004
|
+
size,
|
|
2005
|
+
viewBox: "0 0 24 24",
|
|
2006
|
+
fill: "none",
|
|
2007
|
+
ref: forwardRef2
|
|
2008
|
+
},
|
|
2009
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2010
|
+
clipPath: "url(#a)"
|
|
2011
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2012
|
+
stroke: "currentColor",
|
|
2013
|
+
strokeLinecap: "round",
|
|
2014
|
+
strokeLinejoin: "round",
|
|
2015
|
+
strokeWidth: 2,
|
|
2016
|
+
d: "m3 22 .89-7.124A1 1 0 0 1 4.883 14H6m15 8-.89-7.124a1 1 0 0 0-.993-.876H18M6 14v-3a1 1 0 0 1 1-1h1m-2 4h12m0 0v-3a1 1 0 0 0-1-1h-1m-8 0V4.78a1 1 0 0 1 .757-.97l6-1.5A1 1 0 0 1 16 3.28V10m-8 0h8"
|
|
2017
|
+
})),
|
|
2018
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2019
|
+
id: "a"
|
|
2020
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2021
|
+
d: "M0 0h24v24H0z"
|
|
2022
|
+
})))
|
|
2023
|
+
)
|
|
2024
|
+
);
|
|
2025
|
+
|
|
1842
2026
|
const IconHouse = React.forwardRef(
|
|
1843
2027
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1844
2028
|
StyledIcon,
|
|
@@ -1996,6 +2180,33 @@ const IconLaptop = React.forwardRef(
|
|
|
1996
2180
|
)
|
|
1997
2181
|
);
|
|
1998
2182
|
|
|
2183
|
+
const IconLasso = React.forwardRef(
|
|
2184
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2185
|
+
StyledIcon,
|
|
2186
|
+
{
|
|
2187
|
+
...props,
|
|
2188
|
+
size,
|
|
2189
|
+
viewBox: "0 0 24 24",
|
|
2190
|
+
fill: "none",
|
|
2191
|
+
ref: forwardRef2
|
|
2192
|
+
},
|
|
2193
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2194
|
+
clipPath: "url(#a)"
|
|
2195
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2196
|
+
stroke: "currentColor",
|
|
2197
|
+
strokeDasharray: "1 3",
|
|
2198
|
+
strokeLinecap: "round",
|
|
2199
|
+
strokeWidth: 2,
|
|
2200
|
+
d: "M10.5 21.5s1.471-1.096 3-2.5c2.394-2.198 5.263-2.253 7-5 1.29-2.041 1.385-3.116 1-5.5-.363-2.248-.697-3.609-2.5-5-2.063-1.591-5.396-1.075-8-1-3.335.096-4.711 1.072-7 3.5-1.498 1.588-1.157 1.823-1 4 .151 2.107.356 2.674 2 4 1.779 1.435 5.5 1.333 8 .5s4-4.5 4-4.5"
|
|
2201
|
+
})),
|
|
2202
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2203
|
+
id: "a"
|
|
2204
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2205
|
+
d: "M0 0h24v24H0z"
|
|
2206
|
+
})))
|
|
2207
|
+
)
|
|
2208
|
+
);
|
|
2209
|
+
|
|
1999
2210
|
const IconLayout = React.forwardRef(
|
|
2000
2211
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2001
2212
|
StyledIcon,
|
|
@@ -2078,6 +2289,60 @@ const IconLightning = React.forwardRef(
|
|
|
2078
2289
|
)
|
|
2079
2290
|
);
|
|
2080
2291
|
|
|
2292
|
+
const IconLineCurved = React.forwardRef(
|
|
2293
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2294
|
+
StyledIcon,
|
|
2295
|
+
{
|
|
2296
|
+
...props,
|
|
2297
|
+
size,
|
|
2298
|
+
viewBox: "0 0 24 24",
|
|
2299
|
+
fill: "none",
|
|
2300
|
+
ref: forwardRef2
|
|
2301
|
+
},
|
|
2302
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2303
|
+
clipPath: "url(#a)"
|
|
2304
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2305
|
+
stroke: "currentColor",
|
|
2306
|
+
strokeLinecap: "round",
|
|
2307
|
+
strokeLinejoin: "round",
|
|
2308
|
+
strokeWidth: 2,
|
|
2309
|
+
d: "M2 12s2.767-2.553 5-3c4.466-.893 5.534 6.893 10 6 2.233-.447 5-3 5-3"
|
|
2310
|
+
})),
|
|
2311
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2312
|
+
id: "a"
|
|
2313
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2314
|
+
d: "M0 0h24v24H0z"
|
|
2315
|
+
})))
|
|
2316
|
+
)
|
|
2317
|
+
);
|
|
2318
|
+
|
|
2319
|
+
const IconLineDashed = React.forwardRef(
|
|
2320
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2321
|
+
StyledIcon,
|
|
2322
|
+
{
|
|
2323
|
+
...props,
|
|
2324
|
+
size,
|
|
2325
|
+
viewBox: "0 0 24 24",
|
|
2326
|
+
fill: "none",
|
|
2327
|
+
ref: forwardRef2
|
|
2328
|
+
},
|
|
2329
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2330
|
+
clipPath: "url(#a)"
|
|
2331
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2332
|
+
stroke: "currentColor",
|
|
2333
|
+
strokeLinecap: "round",
|
|
2334
|
+
strokeLinejoin: "round",
|
|
2335
|
+
strokeWidth: 2,
|
|
2336
|
+
d: "M2 12h4m4 0h4m4 0h4"
|
|
2337
|
+
})),
|
|
2338
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2339
|
+
id: "a"
|
|
2340
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2341
|
+
d: "M0 0h24v24H0z"
|
|
2342
|
+
})))
|
|
2343
|
+
)
|
|
2344
|
+
);
|
|
2345
|
+
|
|
2081
2346
|
const IconLineDiagonal = React.forwardRef(
|
|
2082
2347
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2083
2348
|
StyledIcon,
|
|
@@ -2104,6 +2369,111 @@ const IconLineDiagonal = React.forwardRef(
|
|
|
2104
2369
|
)
|
|
2105
2370
|
);
|
|
2106
2371
|
|
|
2372
|
+
const IconLineDotted = React.forwardRef(
|
|
2373
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2374
|
+
StyledIcon,
|
|
2375
|
+
{
|
|
2376
|
+
...props,
|
|
2377
|
+
size,
|
|
2378
|
+
viewBox: "0 0 24 24",
|
|
2379
|
+
fill: "none",
|
|
2380
|
+
ref: forwardRef2
|
|
2381
|
+
},
|
|
2382
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2383
|
+
fill: "currentColor",
|
|
2384
|
+
clipPath: "url(#a)"
|
|
2385
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2386
|
+
d: "M3 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"
|
|
2387
|
+
})),
|
|
2388
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2389
|
+
id: "a"
|
|
2390
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2391
|
+
d: "M0 0h24v24H0z"
|
|
2392
|
+
})))
|
|
2393
|
+
)
|
|
2394
|
+
);
|
|
2395
|
+
|
|
2396
|
+
const IconLineHorizontal = React.forwardRef(
|
|
2397
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2398
|
+
StyledIcon,
|
|
2399
|
+
{
|
|
2400
|
+
...props,
|
|
2401
|
+
size,
|
|
2402
|
+
viewBox: "0 0 24 24",
|
|
2403
|
+
fill: "none",
|
|
2404
|
+
ref: forwardRef2
|
|
2405
|
+
},
|
|
2406
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2407
|
+
clipPath: "url(#a)"
|
|
2408
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2409
|
+
stroke: "currentColor",
|
|
2410
|
+
strokeLinecap: "round",
|
|
2411
|
+
strokeLinejoin: "round",
|
|
2412
|
+
strokeWidth: 2,
|
|
2413
|
+
d: "M3 12h18"
|
|
2414
|
+
})),
|
|
2415
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2416
|
+
id: "a"
|
|
2417
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2418
|
+
d: "M0 0h24v24H0z"
|
|
2419
|
+
})))
|
|
2420
|
+
)
|
|
2421
|
+
);
|
|
2422
|
+
|
|
2423
|
+
const IconLineOrthogonal = React.forwardRef(
|
|
2424
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2425
|
+
StyledIcon,
|
|
2426
|
+
{
|
|
2427
|
+
...props,
|
|
2428
|
+
size,
|
|
2429
|
+
viewBox: "0 0 24 24",
|
|
2430
|
+
fill: "none",
|
|
2431
|
+
ref: forwardRef2
|
|
2432
|
+
},
|
|
2433
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2434
|
+
clipPath: "url(#a)"
|
|
2435
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2436
|
+
stroke: "currentColor",
|
|
2437
|
+
strokeLinecap: "round",
|
|
2438
|
+
strokeLinejoin: "round",
|
|
2439
|
+
strokeWidth: 2,
|
|
2440
|
+
d: "M2 16h10V8h10"
|
|
2441
|
+
})),
|
|
2442
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2443
|
+
id: "a"
|
|
2444
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2445
|
+
d: "M0 0h24v24H0z"
|
|
2446
|
+
})))
|
|
2447
|
+
)
|
|
2448
|
+
);
|
|
2449
|
+
|
|
2450
|
+
const IconLineStraight = React.forwardRef(
|
|
2451
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2452
|
+
StyledIcon,
|
|
2453
|
+
{
|
|
2454
|
+
...props,
|
|
2455
|
+
size,
|
|
2456
|
+
viewBox: "0 0 24 24",
|
|
2457
|
+
fill: "none",
|
|
2458
|
+
ref: forwardRef2
|
|
2459
|
+
},
|
|
2460
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2461
|
+
clipPath: "url(#a)"
|
|
2462
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2463
|
+
stroke: "currentColor",
|
|
2464
|
+
strokeLinecap: "round",
|
|
2465
|
+
strokeLinejoin: "round",
|
|
2466
|
+
strokeWidth: 2,
|
|
2467
|
+
d: "m3 15 18-6"
|
|
2468
|
+
})),
|
|
2469
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2470
|
+
id: "a"
|
|
2471
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2472
|
+
d: "M0 0h24v24H0z"
|
|
2473
|
+
})))
|
|
2474
|
+
)
|
|
2475
|
+
);
|
|
2476
|
+
|
|
2107
2477
|
const IconLinesThreeHorizontalLineVerticalCenter = React.forwardRef(
|
|
2108
2478
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2109
2479
|
StyledIcon,
|
|
@@ -2202,6 +2572,57 @@ const IconLink = React.forwardRef(
|
|
|
2202
2572
|
)
|
|
2203
2573
|
);
|
|
2204
2574
|
|
|
2575
|
+
const IconListBullets = React.forwardRef(
|
|
2576
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2577
|
+
StyledIcon,
|
|
2578
|
+
{
|
|
2579
|
+
...props,
|
|
2580
|
+
size,
|
|
2581
|
+
viewBox: "0 0 24 24",
|
|
2582
|
+
fill: "none",
|
|
2583
|
+
ref: forwardRef2
|
|
2584
|
+
},
|
|
2585
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2586
|
+
stroke: "currentColor",
|
|
2587
|
+
strokeLinecap: "round",
|
|
2588
|
+
strokeLinejoin: "round",
|
|
2589
|
+
strokeWidth: 2,
|
|
2590
|
+
d: "M9 5h12M9 12h12M9 19h12"
|
|
2591
|
+
}),
|
|
2592
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2593
|
+
fill: "currentColor",
|
|
2594
|
+
d: "M5 12a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm0 7a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM5 5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"
|
|
2595
|
+
})
|
|
2596
|
+
)
|
|
2597
|
+
);
|
|
2598
|
+
|
|
2599
|
+
const IconListNumbers = React.forwardRef(
|
|
2600
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2601
|
+
StyledIcon,
|
|
2602
|
+
{
|
|
2603
|
+
...props,
|
|
2604
|
+
size,
|
|
2605
|
+
viewBox: "0 0 24 24",
|
|
2606
|
+
fill: "none",
|
|
2607
|
+
ref: forwardRef2
|
|
2608
|
+
},
|
|
2609
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2610
|
+
clipPath: "url(#a)"
|
|
2611
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2612
|
+
stroke: "currentColor",
|
|
2613
|
+
strokeLinecap: "round",
|
|
2614
|
+
strokeLinejoin: "round",
|
|
2615
|
+
strokeWidth: 2,
|
|
2616
|
+
d: "M3 3h3v6m6-3h9M3 14h4v3H3v3h4m5-3h9"
|
|
2617
|
+
})),
|
|
2618
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2619
|
+
id: "a"
|
|
2620
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2621
|
+
d: "M0 0h24v24H0z"
|
|
2622
|
+
})))
|
|
2623
|
+
)
|
|
2624
|
+
);
|
|
2625
|
+
|
|
2205
2626
|
const IconLockClosed = React.forwardRef(
|
|
2206
2627
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2207
2628
|
StyledIcon,
|
|
@@ -2392,7 +2813,7 @@ const IconMinus = React.forwardRef(
|
|
|
2392
2813
|
stroke: "currentColor",
|
|
2393
2814
|
strokeLinecap: "round",
|
|
2394
2815
|
strokeWidth: 2,
|
|
2395
|
-
d: "
|
|
2816
|
+
d: "M6 12h12"
|
|
2396
2817
|
})
|
|
2397
2818
|
)
|
|
2398
2819
|
);
|
|
@@ -2498,6 +2919,60 @@ const IconPdf = React.forwardRef(
|
|
|
2498
2919
|
)
|
|
2499
2920
|
);
|
|
2500
2921
|
|
|
2922
|
+
const IconPenTip = React.forwardRef(
|
|
2923
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2924
|
+
StyledIcon,
|
|
2925
|
+
{
|
|
2926
|
+
...props,
|
|
2927
|
+
size,
|
|
2928
|
+
viewBox: "0 0 24 24",
|
|
2929
|
+
fill: "none",
|
|
2930
|
+
ref: forwardRef2
|
|
2931
|
+
},
|
|
2932
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2933
|
+
clipPath: "url(#a)"
|
|
2934
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2935
|
+
stroke: "currentColor",
|
|
2936
|
+
strokeLinecap: "round",
|
|
2937
|
+
strokeLinejoin: "round",
|
|
2938
|
+
strokeWidth: 2,
|
|
2939
|
+
d: "M6 21v-4.6a2 2 0 0 1 .154-.77L8.5 10M18 21v-4.6a2 2 0 0 0-.154-.77L15.5 10m-7 0 3.042-6.953a.5.5 0 0 1 .916 0L15.5 10m-7 0h7"
|
|
2940
|
+
})),
|
|
2941
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2942
|
+
id: "a"
|
|
2943
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2944
|
+
d: "M0 0h24v24H0z"
|
|
2945
|
+
})))
|
|
2946
|
+
)
|
|
2947
|
+
);
|
|
2948
|
+
|
|
2949
|
+
const IconPen = React.forwardRef(
|
|
2950
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2951
|
+
StyledIcon,
|
|
2952
|
+
{
|
|
2953
|
+
...props,
|
|
2954
|
+
size,
|
|
2955
|
+
viewBox: "0 0 24 24",
|
|
2956
|
+
fill: "none",
|
|
2957
|
+
ref: forwardRef2
|
|
2958
|
+
},
|
|
2959
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2960
|
+
clipPath: "url(#a)"
|
|
2961
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2962
|
+
stroke: "currentColor",
|
|
2963
|
+
strokeLinecap: "round",
|
|
2964
|
+
strokeLinejoin: "round",
|
|
2965
|
+
strokeWidth: 2,
|
|
2966
|
+
d: "m13 7-8.572 8.572a2 2 0 0 0-.547 1.022l-.807 4.038a.25.25 0 0 0 .294.294l4.038-.807a2 2 0 0 0 1.022-.547L17 11m-4-4 2.586-2.586a2 2 0 0 1 2.828 0l1.172 1.172a2 2 0 0 1 0 2.828L17 11m-4-4 4 4"
|
|
2967
|
+
})),
|
|
2968
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2969
|
+
id: "a"
|
|
2970
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2971
|
+
d: "M0 0h24v24H0z"
|
|
2972
|
+
})))
|
|
2973
|
+
)
|
|
2974
|
+
);
|
|
2975
|
+
|
|
2501
2976
|
const IconPlaceholder = React.forwardRef(
|
|
2502
2977
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2503
2978
|
StyledIcon,
|
|
@@ -2583,6 +3058,33 @@ const IconPlug = React.forwardRef(
|
|
|
2583
3058
|
)
|
|
2584
3059
|
);
|
|
2585
3060
|
|
|
3061
|
+
const IconPlusText = React.forwardRef(
|
|
3062
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3063
|
+
StyledIcon,
|
|
3064
|
+
{
|
|
3065
|
+
...props,
|
|
3066
|
+
size,
|
|
3067
|
+
viewBox: "0 0 24 24",
|
|
3068
|
+
fill: "none",
|
|
3069
|
+
ref: forwardRef2
|
|
3070
|
+
},
|
|
3071
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
3072
|
+
clipPath: "url(#a)"
|
|
3073
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3074
|
+
stroke: "currentColor",
|
|
3075
|
+
strokeLinecap: "round",
|
|
3076
|
+
strokeLinejoin: "round",
|
|
3077
|
+
strokeWidth: 2,
|
|
3078
|
+
d: "M7 5h7m7 0h-7m0 0v15M6 10v6m-3-3h6"
|
|
3079
|
+
})),
|
|
3080
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
3081
|
+
id: "a"
|
|
3082
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3083
|
+
d: "M0 0h24v24H0z"
|
|
3084
|
+
})))
|
|
3085
|
+
)
|
|
3086
|
+
);
|
|
3087
|
+
|
|
2586
3088
|
const IconPlus = React.forwardRef(
|
|
2587
3089
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2588
3090
|
StyledIcon,
|
|
@@ -2602,6 +3104,31 @@ const IconPlus = React.forwardRef(
|
|
|
2602
3104
|
)
|
|
2603
3105
|
);
|
|
2604
3106
|
|
|
3107
|
+
const IconProhibit = React.forwardRef(
|
|
3108
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3109
|
+
StyledIcon,
|
|
3110
|
+
{
|
|
3111
|
+
...props,
|
|
3112
|
+
size,
|
|
3113
|
+
viewBox: "0 0 24 24",
|
|
3114
|
+
fill: "none",
|
|
3115
|
+
ref: forwardRef2
|
|
3116
|
+
},
|
|
3117
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
3118
|
+
clipPath: "url(#a)"
|
|
3119
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3120
|
+
stroke: "currentColor",
|
|
3121
|
+
strokeWidth: 2,
|
|
3122
|
+
d: "M7 17 17 7m2.5 5a7.5 7.5 0 1 1-15 0 7.5 7.5 0 0 1 15 0Z"
|
|
3123
|
+
})),
|
|
3124
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
3125
|
+
id: "a"
|
|
3126
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3127
|
+
d: "M0 0h24v24H0z"
|
|
3128
|
+
})))
|
|
3129
|
+
)
|
|
3130
|
+
);
|
|
3131
|
+
|
|
2605
3132
|
const IconPushPin = React.forwardRef(
|
|
2606
3133
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2607
3134
|
StyledIcon,
|
|
@@ -3592,6 +4119,129 @@ const IconTag = React.forwardRef(
|
|
|
3592
4119
|
)
|
|
3593
4120
|
);
|
|
3594
4121
|
|
|
4122
|
+
const IconTextAUnderline = React.forwardRef(
|
|
4123
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
4124
|
+
StyledIcon,
|
|
4125
|
+
{
|
|
4126
|
+
...props,
|
|
4127
|
+
size,
|
|
4128
|
+
viewBox: "0 0 24 24",
|
|
4129
|
+
fill: "none",
|
|
4130
|
+
ref: forwardRef2
|
|
4131
|
+
},
|
|
4132
|
+
/* @__PURE__ */ React__default["default"].createElement("rect", {
|
|
4133
|
+
width: 18,
|
|
4134
|
+
height: 2,
|
|
4135
|
+
x: 3,
|
|
4136
|
+
y: 19,
|
|
4137
|
+
fill: "currentColor",
|
|
4138
|
+
rx: 0.5
|
|
4139
|
+
}),
|
|
4140
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
4141
|
+
fill: "currentColor",
|
|
4142
|
+
d: "M6.077 15.615a1 1 0 1 0 1.846.77l-1.846-.77ZM12 4l.923-.385a1 1 0 0 0-1.846 0L12 4Zm4.077 12.385a1 1 0 0 0 1.846-.77l-1.846.77Zm-5-12 3.75 9 1.846-.77-3.75-9-1.846.77Zm3.75 9 1.25 3 1.846-.77-1.25-3-1.846.77Zm-6.904 3 1.25-3-1.846-.77-1.25 3 1.846.77Zm1.25-3 3.75-9-1.846-.77-3.75 9 1.846.77ZM15.75 12h-7.5v2h7.5v-2Z"
|
|
4143
|
+
})
|
|
4144
|
+
)
|
|
4145
|
+
);
|
|
4146
|
+
|
|
4147
|
+
const IconTextAlignCenter = React.forwardRef(
|
|
4148
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
4149
|
+
StyledIcon,
|
|
4150
|
+
{
|
|
4151
|
+
...props,
|
|
4152
|
+
size,
|
|
4153
|
+
viewBox: "0 0 24 24",
|
|
4154
|
+
fill: "none",
|
|
4155
|
+
ref: forwardRef2
|
|
4156
|
+
},
|
|
4157
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
4158
|
+
clipPath: "url(#a)"
|
|
4159
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
4160
|
+
stroke: "currentColor",
|
|
4161
|
+
strokeLinecap: "round",
|
|
4162
|
+
strokeLinejoin: "round",
|
|
4163
|
+
strokeWidth: 2,
|
|
4164
|
+
d: "M5 6h14M8 10h8M5 14h14M8 18h8"
|
|
4165
|
+
})),
|
|
4166
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
4167
|
+
id: "a"
|
|
4168
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
4169
|
+
d: "M0 0h24v24H0z"
|
|
4170
|
+
})))
|
|
4171
|
+
)
|
|
4172
|
+
);
|
|
4173
|
+
|
|
4174
|
+
const IconTextAlignLeft = React.forwardRef(
|
|
4175
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
4176
|
+
StyledIcon,
|
|
4177
|
+
{
|
|
4178
|
+
...props,
|
|
4179
|
+
size,
|
|
4180
|
+
viewBox: "0 0 24 24",
|
|
4181
|
+
fill: "none",
|
|
4182
|
+
ref: forwardRef2
|
|
4183
|
+
},
|
|
4184
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
4185
|
+
clipPath: "url(#a)"
|
|
4186
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
4187
|
+
stroke: "currentColor",
|
|
4188
|
+
strokeLinecap: "round",
|
|
4189
|
+
strokeLinejoin: "round",
|
|
4190
|
+
strokeWidth: 2,
|
|
4191
|
+
d: "M5 6h14M5 12h7m-7 6h14"
|
|
4192
|
+
})),
|
|
4193
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
4194
|
+
id: "a"
|
|
4195
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
4196
|
+
d: "M0 0h24v24H0z"
|
|
4197
|
+
})))
|
|
4198
|
+
)
|
|
4199
|
+
);
|
|
4200
|
+
|
|
4201
|
+
const IconTextBBoldItalicUnderlined = React.forwardRef(
|
|
4202
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
4203
|
+
StyledIcon,
|
|
4204
|
+
{
|
|
4205
|
+
...props,
|
|
4206
|
+
size,
|
|
4207
|
+
viewBox: "0 0 24 24",
|
|
4208
|
+
fill: "none",
|
|
4209
|
+
ref: forwardRef2
|
|
4210
|
+
},
|
|
4211
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
4212
|
+
fill: "currentColor",
|
|
4213
|
+
d: "M4 20a1 1 0 0 1 1-1h12a1 1 0 1 1 0 2H5a1 1 0 0 1-1-1Zm3.5-4.25-1.229-.23L5.994 17H7.5v-1.25Zm2.25-12V2.5H8.713L8.52 3.52l1.229.23Zm2.75 6V11 9.75Zm-2.75-6V5h3.75V2.5H9.75v1.25Zm-2.25 12V17h4v-2.5h-4v1.25Zm9.5-3.5c0-1.342-.506-2.405-1.512-3.052-.895-.574-2.008-.698-2.988-.698V11c.852 0 1.364.126 1.636.302.161.103.364.29.364.948H17Zm-2.5 0c0 1.106-.967 2.25-3 2.25V17c2.967 0 5.5-1.856 5.5-4.75h-2.5Zm-2-1.25c1.053 0 2.321-.21 3.367-.889 1.119-.725 1.883-1.928 1.883-3.611h-2.5c0 .817-.32 1.24-.743 1.514-.496.322-1.229.486-2.007.486V11Zm5.25-4.5c0-1.778-.941-2.852-1.964-3.41A5.096 5.096 0 0 0 13.5 2.5V5c.13 0 .65.045 1.089.285.202.11.357.245.463.409.1.155.198.4.198.806h2.5ZM8.521 3.52l-1.125 6 2.458.46 1.125-6-2.458-.46Zm-1.125 6-1.125 6 2.458.46 1.125-6-2.458-.46ZM12.5 8.5H8.625V11H12.5V8.5Z"
|
|
4214
|
+
})
|
|
4215
|
+
)
|
|
4216
|
+
);
|
|
4217
|
+
|
|
4218
|
+
const IconTextBBold = React.forwardRef(
|
|
4219
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
4220
|
+
StyledIcon,
|
|
4221
|
+
{
|
|
4222
|
+
...props,
|
|
4223
|
+
size,
|
|
4224
|
+
viewBox: "0 0 24 24",
|
|
4225
|
+
fill: "none",
|
|
4226
|
+
ref: forwardRef2
|
|
4227
|
+
},
|
|
4228
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
4229
|
+
clipPath: "url(#a)"
|
|
4230
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
4231
|
+
stroke: "currentColor",
|
|
4232
|
+
strokeLinecap: "round",
|
|
4233
|
+
strokeLinejoin: "round",
|
|
4234
|
+
strokeWidth: 2.5,
|
|
4235
|
+
d: "M13.5 11.75H7.25m6.25 0c1.055 0 2.5-1.18 2.5-3s-1.082-3.5-3.25-3.5h-5.5v6.5m6.25 0c2.5 0 3.5 1.838 3.5 3.5s-1.225 3.5-3.5 3.5H7.25v-7"
|
|
4236
|
+
})),
|
|
4237
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
4238
|
+
id: "a"
|
|
4239
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
4240
|
+
d: "M0 0h24v24H0z"
|
|
4241
|
+
})))
|
|
4242
|
+
)
|
|
4243
|
+
);
|
|
4244
|
+
|
|
3595
4245
|
const IconTextHOne = React.forwardRef(
|
|
3596
4246
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3597
4247
|
StyledIcon,
|
|
@@ -3673,6 +4323,139 @@ const IconTextHTwo = React.forwardRef(
|
|
|
3673
4323
|
)
|
|
3674
4324
|
);
|
|
3675
4325
|
|
|
4326
|
+
const IconTextIItalic = React.forwardRef(
|
|
4327
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
4328
|
+
StyledIcon,
|
|
4329
|
+
{
|
|
4330
|
+
...props,
|
|
4331
|
+
size,
|
|
4332
|
+
viewBox: "0 0 24 24",
|
|
4333
|
+
fill: "none",
|
|
4334
|
+
ref: forwardRef2
|
|
4335
|
+
},
|
|
4336
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
4337
|
+
clipPath: "url(#a)"
|
|
4338
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
4339
|
+
stroke: "currentColor",
|
|
4340
|
+
strokeLinecap: "round",
|
|
4341
|
+
strokeWidth: 2,
|
|
4342
|
+
d: "M11 5h4m4 0h-4m0 0L9 19m0 0H5m4 0h4"
|
|
4343
|
+
})),
|
|
4344
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
4345
|
+
id: "a"
|
|
4346
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
4347
|
+
d: "M0 0h24v24H0z"
|
|
4348
|
+
})))
|
|
4349
|
+
)
|
|
4350
|
+
);
|
|
4351
|
+
|
|
4352
|
+
const IconTextIndent = React.forwardRef(
|
|
4353
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
4354
|
+
StyledIcon,
|
|
4355
|
+
{
|
|
4356
|
+
...props,
|
|
4357
|
+
size,
|
|
4358
|
+
viewBox: "0 0 24 24",
|
|
4359
|
+
fill: "none",
|
|
4360
|
+
ref: forwardRef2
|
|
4361
|
+
},
|
|
4362
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
4363
|
+
clipPath: "url(#a)"
|
|
4364
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
4365
|
+
stroke: "currentColor",
|
|
4366
|
+
strokeLinecap: "round",
|
|
4367
|
+
strokeLinejoin: "round",
|
|
4368
|
+
strokeWidth: 2,
|
|
4369
|
+
d: "M12 3v18M2 12h7m0 0L6 9m3 3-3 3m10-9h6m-6 6h3m-3 6h6"
|
|
4370
|
+
})),
|
|
4371
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
4372
|
+
id: "a"
|
|
4373
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
4374
|
+
d: "M0 0h24v24H0z"
|
|
4375
|
+
})))
|
|
4376
|
+
)
|
|
4377
|
+
);
|
|
4378
|
+
|
|
4379
|
+
const IconTextLinesThree = React.forwardRef(
|
|
4380
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
4381
|
+
StyledIcon,
|
|
4382
|
+
{
|
|
4383
|
+
...props,
|
|
4384
|
+
size,
|
|
4385
|
+
viewBox: "0 0 24 24",
|
|
4386
|
+
fill: "none",
|
|
4387
|
+
ref: forwardRef2
|
|
4388
|
+
},
|
|
4389
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
4390
|
+
clipPath: "url(#a)"
|
|
4391
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
4392
|
+
stroke: "currentColor",
|
|
4393
|
+
strokeLinecap: "round",
|
|
4394
|
+
strokeLinejoin: "round",
|
|
4395
|
+
strokeWidth: 2,
|
|
4396
|
+
d: "M4 6h15M4 12h15M4 18h9"
|
|
4397
|
+
})),
|
|
4398
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
4399
|
+
id: "a"
|
|
4400
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
4401
|
+
d: "M0 0h24v24H0z"
|
|
4402
|
+
})))
|
|
4403
|
+
)
|
|
4404
|
+
);
|
|
4405
|
+
|
|
4406
|
+
const IconTextSStrikethrough = React.forwardRef(
|
|
4407
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
4408
|
+
StyledIcon,
|
|
4409
|
+
{
|
|
4410
|
+
...props,
|
|
4411
|
+
size,
|
|
4412
|
+
viewBox: "0 0 24 24",
|
|
4413
|
+
fill: "none",
|
|
4414
|
+
ref: forwardRef2
|
|
4415
|
+
},
|
|
4416
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
4417
|
+
clipPath: "url(#a)"
|
|
4418
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
4419
|
+
stroke: "currentColor",
|
|
4420
|
+
strokeLinecap: "round",
|
|
4421
|
+
strokeLinejoin: "round",
|
|
4422
|
+
strokeWidth: 2,
|
|
4423
|
+
d: "M8 19s1.196.992 4 1c.98.003 4-.5 4-4s-4-4-4-4m0 0H5m7 0h7m-3.5-7.25s-3.276-1.816-6 0C8.284 5.56 7.954 6.794 8.051 8"
|
|
4424
|
+
})),
|
|
4425
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
4426
|
+
id: "a"
|
|
4427
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
4428
|
+
d: "M0 0h24v24H0z"
|
|
4429
|
+
})))
|
|
4430
|
+
)
|
|
4431
|
+
);
|
|
4432
|
+
|
|
4433
|
+
const IconTextStyles = React.forwardRef(
|
|
4434
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
4435
|
+
StyledIcon,
|
|
4436
|
+
{
|
|
4437
|
+
...props,
|
|
4438
|
+
size,
|
|
4439
|
+
viewBox: "0 0 24 24",
|
|
4440
|
+
fill: "none",
|
|
4441
|
+
ref: forwardRef2
|
|
4442
|
+
},
|
|
4443
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
4444
|
+
stroke: "currentColor",
|
|
4445
|
+
strokeLinecap: "round",
|
|
4446
|
+
strokeLinejoin: "round",
|
|
4447
|
+
strokeWidth: 2,
|
|
4448
|
+
d: "M11.461 12 8 3l-3.462 9m6.923 0H4.538m6.923 0 .52 1.5M3 16l1.538-4"
|
|
4449
|
+
}),
|
|
4450
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
4451
|
+
fill: "currentColor",
|
|
4452
|
+
fillRule: "evenodd",
|
|
4453
|
+
d: "M21.693 21.321c.227-.164.43-.344.608-.54.183-.198.33-.393.442-.584a1.505 1.505 0 0 0 .257-.746.371.371 0 0 0-.137-.273.404.404 0 0 0-.29-.124c-.094 0-.166.064-.22.137a7.654 7.654 0 0 1-.168.22l-.001.001v.001a2.271 2.271 0 0 1-.752.661c-.27.145-.626.222-1.072.222a1.09 1.09 0 0 1-.505-.124c-.146-.078-.28-.221-.401-.443-.12-.226-.216-.537-.287-.937-.071-.397-.107-.912-.107-1.547 0-.22.02-.465.062-.736.042-.272.087-.533.134-.781.054-.256.102-.478.144-.668.041-.188.065-.324.065-.395a.656.656 0 0 0-.169-.474l-.11-.127a.666.666 0 0 1-.074-.205v-.002l-.001-.002a1.311 1.311 0 0 0-.358-.57 1.25 1.25 0 0 0-.262-.201.573.573 0 0 0-.28-.084.414.414 0 0 0-.186.046c-.05.024-.099.052-.148.082l-.136.067a.314.314 0 0 1-.106.02.671.671 0 0 1-.153-.024 4.687 4.687 0 0 0-.21-.07 3.322 3.322 0 0 0-.218-.08.627.627 0 0 0-.21-.041c-.219 0-.489.103-.804.29a5.806 5.806 0 0 0-.987.753 9.1 9.1 0 0 0-1.018 1.1 7.927 7.927 0 0 0-.864 1.328c-.217.412-.4.792-.552 1.14-.145.348-.266.672-.363.972v.002a6.308 6.308 0 0 0-.2.833l-.001.002c-.037.26-.055.509-.055.745a2.025 2.025 0 0 0 .453 1.273l.001.002c.145.17.31.304.494.405l.001.001c.193.102.394.154.602.154.307 0 .652-.098 1.031-.287a7.16 7.16 0 0 0 1.159-.742c.393-.306.771-.649 1.134-1.027a9.21 9.21 0 0 0 .827-.968c.071.337.157.66.257.968v.001c.129.376.288.708.48.995v.002c.199.283.433.51.702.678.281.17.611.255.986.255.287 0 .566-.053.835-.158.265-.104.509-.236.731-.396Zm-4.1-6.764c.121.172.19.47.19.912 0 .215-.036.453-.112.714a5.971 5.971 0 0 1-.301.792c-.125.27-.264.535-.419.795v.001c-.15.26-.298.5-.446.717l-.001.001a5.11 5.11 0 0 1-.52.648 9.373 9.373 0 0 1-.66.628 5.672 5.672 0 0 1-.619.483 1.85 1.85 0 0 1-.246.133.422.422 0 0 1-.152.04c-.285 0-.45-.079-.533-.207-.095-.153-.147-.36-.147-.629 0-.18.031-.386.096-.618.064-.24.15-.49.257-.748.112-.266.24-.537.383-.815.143-.278.292-.55.447-.817.162-.267.32-.521.475-.764.161-.243.313-.458.455-.647l.002-.002a2.04 2.04 0 0 1 .266-.299c.11-.103.232-.198.365-.284a2.03 2.03 0 0 1 .412-.205h.002c.146-.056.288-.083.425-.083.132 0 .26.073.381.254Z",
|
|
4454
|
+
clipRule: "evenodd"
|
|
4455
|
+
})
|
|
4456
|
+
)
|
|
4457
|
+
);
|
|
4458
|
+
|
|
3676
4459
|
const IconTextT = React.forwardRef(
|
|
3677
4460
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3678
4461
|
StyledIcon,
|
|
@@ -3699,6 +4482,33 @@ const IconTextT = React.forwardRef(
|
|
|
3699
4482
|
)
|
|
3700
4483
|
);
|
|
3701
4484
|
|
|
4485
|
+
const IconTextUUnderlined = React.forwardRef(
|
|
4486
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
4487
|
+
StyledIcon,
|
|
4488
|
+
{
|
|
4489
|
+
...props,
|
|
4490
|
+
size,
|
|
4491
|
+
viewBox: "0 0 24 24",
|
|
4492
|
+
fill: "none",
|
|
4493
|
+
ref: forwardRef2
|
|
4494
|
+
},
|
|
4495
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
4496
|
+
clipPath: "url(#a)"
|
|
4497
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
4498
|
+
stroke: "currentColor",
|
|
4499
|
+
strokeLinecap: "round",
|
|
4500
|
+
strokeLinejoin: "round",
|
|
4501
|
+
strokeWidth: 2,
|
|
4502
|
+
d: "M7 20h10M7 4v8c0 3 2.723 4 5 4s5-1 5-4V4"
|
|
4503
|
+
})),
|
|
4504
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
4505
|
+
id: "a"
|
|
4506
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
4507
|
+
d: "M0 0h24v24H0z"
|
|
4508
|
+
})))
|
|
4509
|
+
)
|
|
4510
|
+
);
|
|
4511
|
+
|
|
3702
4512
|
const IconThumbsUp = React.forwardRef(
|
|
3703
4513
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3704
4514
|
StyledIcon,
|
|
@@ -4097,12 +4907,17 @@ exports.IconCreditCard = IconCreditCard;
|
|
|
4097
4907
|
exports.IconCrop = IconCrop;
|
|
4098
4908
|
exports.IconCross = IconCross;
|
|
4099
4909
|
exports.IconCrossCircle = IconCrossCircle;
|
|
4910
|
+
exports.IconCube = IconCube;
|
|
4100
4911
|
exports.IconCursor = IconCursor;
|
|
4101
4912
|
exports.IconCursorFilled = IconCursorFilled;
|
|
4913
|
+
exports.IconCursorText = IconCursorText;
|
|
4914
|
+
exports.IconCurveSquareCircleArrow = IconCurveSquareCircleArrow;
|
|
4102
4915
|
exports.IconDistributeHorizontal = IconDistributeHorizontal;
|
|
4103
4916
|
exports.IconDistributeVertical = IconDistributeVertical;
|
|
4104
4917
|
exports.IconEnvelope = IconEnvelope;
|
|
4918
|
+
exports.IconEraser = IconEraser;
|
|
4105
4919
|
exports.IconExclamationPointCircle = IconExclamationPointCircle;
|
|
4920
|
+
exports.IconEyedropper = IconEyedropper;
|
|
4106
4921
|
exports.IconFactory = IconFactory;
|
|
4107
4922
|
exports.IconFactoryHouse = IconFactoryHouse;
|
|
4108
4923
|
exports.IconFunnel = IconFunnel;
|
|
@@ -4113,6 +4928,8 @@ exports.IconGridFour = IconGridFour;
|
|
|
4113
4928
|
exports.IconGridSix = IconGridSix;
|
|
4114
4929
|
exports.IconHand = IconHand;
|
|
4115
4930
|
exports.IconHandFilled = IconHandFilled;
|
|
4931
|
+
exports.IconHighlighter = IconHighlighter;
|
|
4932
|
+
exports.IconHighlighterUnderline = IconHighlighterUnderline;
|
|
4116
4933
|
exports.IconHouse = IconHouse;
|
|
4117
4934
|
exports.IconImage = IconImage;
|
|
4118
4935
|
exports.IconInformationMarkCircle = IconInformationMarkCircle;
|
|
@@ -4120,14 +4937,23 @@ exports.IconKanban = IconKanban;
|
|
|
4120
4937
|
exports.IconKey = IconKey;
|
|
4121
4938
|
exports.IconKeycap = IconKeycap;
|
|
4122
4939
|
exports.IconLaptop = IconLaptop;
|
|
4940
|
+
exports.IconLasso = IconLasso;
|
|
4123
4941
|
exports.IconLayout = IconLayout;
|
|
4124
4942
|
exports.IconLifesaver = IconLifesaver;
|
|
4125
4943
|
exports.IconLightning = IconLightning;
|
|
4944
|
+
exports.IconLineCurved = IconLineCurved;
|
|
4945
|
+
exports.IconLineDashed = IconLineDashed;
|
|
4126
4946
|
exports.IconLineDiagonal = IconLineDiagonal;
|
|
4947
|
+
exports.IconLineDotted = IconLineDotted;
|
|
4948
|
+
exports.IconLineHorizontal = IconLineHorizontal;
|
|
4949
|
+
exports.IconLineOrthogonal = IconLineOrthogonal;
|
|
4950
|
+
exports.IconLineStraight = IconLineStraight;
|
|
4127
4951
|
exports.IconLinesThreeHorizontal = IconLinesThreeHorizontal;
|
|
4128
4952
|
exports.IconLinesThreeHorizontalLineVerticalCenter = IconLinesThreeHorizontalLineVerticalCenter;
|
|
4129
4953
|
exports.IconLinesThreeVertical = IconLinesThreeVertical;
|
|
4130
4954
|
exports.IconLink = IconLink;
|
|
4955
|
+
exports.IconListBullets = IconListBullets;
|
|
4956
|
+
exports.IconListNumbers = IconListNumbers;
|
|
4131
4957
|
exports.IconLockClosed = IconLockClosed;
|
|
4132
4958
|
exports.IconLockOpen = IconLockOpen;
|
|
4133
4959
|
exports.IconMagnet = IconMagnet;
|
|
@@ -4140,11 +4966,15 @@ exports.IconMouse = IconMouse;
|
|
|
4140
4966
|
exports.IconParallelogram = IconParallelogram;
|
|
4141
4967
|
exports.IconPauseCircle = IconPauseCircle;
|
|
4142
4968
|
exports.IconPdf = IconPdf;
|
|
4969
|
+
exports.IconPen = IconPen;
|
|
4970
|
+
exports.IconPenTip = IconPenTip;
|
|
4143
4971
|
exports.IconPlaceholder = IconPlaceholder;
|
|
4144
4972
|
exports.IconPlayCircle = IconPlayCircle;
|
|
4145
4973
|
exports.IconPlaybackSpeedCircle = IconPlaybackSpeedCircle;
|
|
4146
4974
|
exports.IconPlug = IconPlug;
|
|
4147
4975
|
exports.IconPlus = IconPlus;
|
|
4976
|
+
exports.IconPlusText = IconPlusText;
|
|
4977
|
+
exports.IconProhibit = IconProhibit;
|
|
4148
4978
|
exports.IconPushPin = IconPushPin;
|
|
4149
4979
|
exports.IconQuestionMarkCircle = IconQuestionMarkCircle;
|
|
4150
4980
|
exports.IconRectanglesThreeAligned = IconRectanglesThreeAligned;
|
|
@@ -4185,10 +5015,21 @@ exports.IconStack = IconStack;
|
|
|
4185
5015
|
exports.IconStickyNote = IconStickyNote;
|
|
4186
5016
|
exports.IconStopCircle = IconStopCircle;
|
|
4187
5017
|
exports.IconTag = IconTag;
|
|
5018
|
+
exports.IconTextAUnderline = IconTextAUnderline;
|
|
5019
|
+
exports.IconTextAlignCenter = IconTextAlignCenter;
|
|
5020
|
+
exports.IconTextAlignLeft = IconTextAlignLeft;
|
|
5021
|
+
exports.IconTextBBold = IconTextBBold;
|
|
5022
|
+
exports.IconTextBBoldItalicUnderlined = IconTextBBoldItalicUnderlined;
|
|
4188
5023
|
exports.IconTextHOne = IconTextHOne;
|
|
4189
5024
|
exports.IconTextHThree = IconTextHThree;
|
|
4190
5025
|
exports.IconTextHTwo = IconTextHTwo;
|
|
5026
|
+
exports.IconTextIItalic = IconTextIItalic;
|
|
5027
|
+
exports.IconTextIndent = IconTextIndent;
|
|
5028
|
+
exports.IconTextLinesThree = IconTextLinesThree;
|
|
5029
|
+
exports.IconTextSStrikethrough = IconTextSStrikethrough;
|
|
5030
|
+
exports.IconTextStyles = IconTextStyles;
|
|
4191
5031
|
exports.IconTextT = IconTextT;
|
|
5032
|
+
exports.IconTextUUnderlined = IconTextUUnderlined;
|
|
4192
5033
|
exports.IconThumbsUp = IconThumbsUp;
|
|
4193
5034
|
exports.IconTicket = IconTicket;
|
|
4194
5035
|
exports.IconTimer = IconTimer;
|