@mirohq/design-system-icons 0.6.0 → 0.7.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.
Files changed (72) hide show
  1. package/dist/main.js +842 -1
  2. package/dist/main.js.map +1 -1
  3. package/dist/module.js +812 -2
  4. package/dist/module.js.map +1 -1
  5. package/dist/types.d.ts +63 -1
  6. package/package.json +1 -1
  7. package/react/cube.tsx +34 -0
  8. package/react/cursor-text.tsx +34 -0
  9. package/react/curve-square-circle-arrow.tsx +34 -0
  10. package/react/eraser.tsx +34 -0
  11. package/react/eyedropper.tsx +31 -0
  12. package/react/highlighter-underline.tsx +25 -0
  13. package/react/highlighter.tsx +34 -0
  14. package/react/index.ts +31 -0
  15. package/react/lasso.tsx +34 -0
  16. package/react/line-curved.tsx +34 -0
  17. package/react/line-dashed.tsx +34 -0
  18. package/react/line-dotted.tsx +28 -0
  19. package/react/line-horizontal.tsx +34 -0
  20. package/react/line-orthogonal.tsx +34 -0
  21. package/react/line-straight.tsx +34 -0
  22. package/react/list-bullets.tsx +31 -0
  23. package/react/list-numbers.tsx +34 -0
  24. package/react/minus.tsx +1 -1
  25. package/react/pen-tip.tsx +34 -0
  26. package/react/pen.tsx +34 -0
  27. package/react/plus-text.tsx +34 -0
  28. package/react/prohibit.tsx +32 -0
  29. package/react/text-a-underline.tsx +25 -0
  30. package/react/text-align-center.tsx +34 -0
  31. package/react/text-align-left.tsx +34 -0
  32. package/react/text-b-bold-italic-underlined.tsx +24 -0
  33. package/react/text-b-bold.tsx +34 -0
  34. package/react/text-i-italic.tsx +33 -0
  35. package/react/text-indent.tsx +34 -0
  36. package/react/text-lines-three.tsx +34 -0
  37. package/react/text-s-strikethrough.tsx +34 -0
  38. package/react/text-styles.tsx +33 -0
  39. package/react/text-u-underlined.tsx +34 -0
  40. package/svg/24/cube.svg +1 -0
  41. package/svg/24/cursor-text.svg +1 -0
  42. package/svg/24/curve-square-circle-arrow.svg +1 -0
  43. package/svg/24/eraser.svg +1 -0
  44. package/svg/24/eyedropper.svg +1 -0
  45. package/svg/24/highlighter-underline.svg +1 -0
  46. package/svg/24/highlighter.svg +1 -0
  47. package/svg/24/lasso.svg +1 -0
  48. package/svg/24/line-curved.svg +1 -0
  49. package/svg/24/line-dashed.svg +1 -0
  50. package/svg/24/line-dotted.svg +1 -0
  51. package/svg/24/line-horizontal.svg +1 -0
  52. package/svg/24/line-orthogonal.svg +1 -0
  53. package/svg/24/line-straight.svg +1 -0
  54. package/svg/24/list-bullets.svg +1 -0
  55. package/svg/24/list-numbers.svg +1 -0
  56. package/svg/24/minus.svg +1 -1
  57. package/svg/24/pen-tip.svg +1 -0
  58. package/svg/24/pen.svg +1 -0
  59. package/svg/24/plus-text.svg +1 -0
  60. package/svg/24/prohibit.svg +1 -0
  61. package/svg/24/text-a-underline.svg +1 -0
  62. package/svg/24/text-align-center.svg +1 -0
  63. package/svg/24/text-align-left.svg +1 -0
  64. package/svg/24/text-b-bold-italic-underlined.svg +1 -0
  65. package/svg/24/text-b-bold.svg +1 -0
  66. package/svg/24/text-i-italic.svg +1 -0
  67. package/svg/24/text-indent.svg +1 -0
  68. package/svg/24/text-lines-three.svg +1 -0
  69. package/svg/24/text-s-strikethrough.svg +1 -0
  70. package/svg/24/text-styles.svg +1 -0
  71. package/svg/24/text-u-underlined.svg +1 -0
  72. package/svg/meta.json +225 -0
package/dist/module.js CHANGED
@@ -1438,6 +1438,33 @@ const IconCross = forwardRef(
1438
1438
  )
1439
1439
  );
1440
1440
 
1441
+ const IconCube = forwardRef(
1442
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
1443
+ StyledIcon,
1444
+ {
1445
+ ...props,
1446
+ size,
1447
+ viewBox: "0 0 24 24",
1448
+ fill: "none",
1449
+ ref: forwardRef2
1450
+ },
1451
+ /* @__PURE__ */ React.createElement("g", {
1452
+ clipPath: "url(#a)"
1453
+ }, /* @__PURE__ */ React.createElement("path", {
1454
+ stroke: "currentColor",
1455
+ strokeLinecap: "round",
1456
+ strokeLinejoin: "round",
1457
+ strokeWidth: 2,
1458
+ d: "m21 7-9-3-9 3m18 0-9 3m9-3v11l-9 3m0-11L3 7m9 3v11M3 7v11l9 3"
1459
+ })),
1460
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
1461
+ id: "a"
1462
+ }, /* @__PURE__ */ React.createElement("path", {
1463
+ d: "M0 0h24v24H0z"
1464
+ })))
1465
+ )
1466
+ );
1467
+
1441
1468
  const IconCursorFilled = forwardRef(
1442
1469
  ({ size = "medium", ...props }, forwardRef2) => createElement(
1443
1470
  StyledIcon,
@@ -1461,6 +1488,33 @@ const IconCursorFilled = forwardRef(
1461
1488
  )
1462
1489
  );
1463
1490
 
1491
+ const IconCursorText = forwardRef(
1492
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
1493
+ StyledIcon,
1494
+ {
1495
+ ...props,
1496
+ size,
1497
+ viewBox: "0 0 24 24",
1498
+ fill: "none",
1499
+ ref: forwardRef2
1500
+ },
1501
+ /* @__PURE__ */ React.createElement("g", {
1502
+ clipPath: "url(#a)"
1503
+ }, /* @__PURE__ */ React.createElement("path", {
1504
+ stroke: "currentColor",
1505
+ strokeLinecap: "round",
1506
+ strokeLinejoin: "round",
1507
+ strokeWidth: 2,
1508
+ 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"
1509
+ })),
1510
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
1511
+ id: "a"
1512
+ }, /* @__PURE__ */ React.createElement("path", {
1513
+ d: "M0 0h24v24H0z"
1514
+ })))
1515
+ )
1516
+ );
1517
+
1464
1518
  const IconCursor = forwardRef(
1465
1519
  ({ size = "medium", ...props }, forwardRef2) => createElement(
1466
1520
  StyledIcon,
@@ -1487,6 +1541,33 @@ const IconCursor = forwardRef(
1487
1541
  )
1488
1542
  );
1489
1543
 
1544
+ const IconCurveSquareCircleArrow = forwardRef(
1545
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
1546
+ StyledIcon,
1547
+ {
1548
+ ...props,
1549
+ size,
1550
+ viewBox: "0 0 24 24",
1551
+ fill: "none",
1552
+ ref: forwardRef2
1553
+ },
1554
+ /* @__PURE__ */ React.createElement("g", {
1555
+ clipPath: "url(#a)"
1556
+ }, /* @__PURE__ */ React.createElement("path", {
1557
+ stroke: "currentColor",
1558
+ strokeLinecap: "round",
1559
+ strokeLinejoin: "round",
1560
+ strokeWidth: 2,
1561
+ 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"
1562
+ })),
1563
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
1564
+ id: "a"
1565
+ }, /* @__PURE__ */ React.createElement("path", {
1566
+ d: "M0 0h24v24H0z"
1567
+ })))
1568
+ )
1569
+ );
1570
+
1490
1571
  const IconDistributeHorizontal = forwardRef(
1491
1572
  ({ size = "medium", ...props }, forwardRef2) => createElement(
1492
1573
  StyledIcon,
@@ -1561,6 +1642,33 @@ const IconEnvelope = forwardRef(
1561
1642
  )
1562
1643
  );
1563
1644
 
1645
+ const IconEraser = forwardRef(
1646
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
1647
+ StyledIcon,
1648
+ {
1649
+ ...props,
1650
+ size,
1651
+ viewBox: "0 0 24 24",
1652
+ fill: "none",
1653
+ ref: forwardRef2
1654
+ },
1655
+ /* @__PURE__ */ React.createElement("g", {
1656
+ clipPath: "url(#a)"
1657
+ }, /* @__PURE__ */ React.createElement("path", {
1658
+ stroke: "currentColor",
1659
+ strokeLinecap: "round",
1660
+ strokeLinejoin: "round",
1661
+ strokeWidth: 2,
1662
+ 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"
1663
+ })),
1664
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
1665
+ id: "a"
1666
+ }, /* @__PURE__ */ React.createElement("path", {
1667
+ d: "M0 0h24v24H0z"
1668
+ })))
1669
+ )
1670
+ );
1671
+
1564
1672
  const IconExclamationPointCircle = forwardRef(
1565
1673
  ({ size = "medium", ...props }, forwardRef2) => createElement(
1566
1674
  StyledIcon,
@@ -1584,6 +1692,30 @@ const IconExclamationPointCircle = forwardRef(
1584
1692
  )
1585
1693
  );
1586
1694
 
1695
+ const IconEyedropper = forwardRef(
1696
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
1697
+ StyledIcon,
1698
+ {
1699
+ ...props,
1700
+ size,
1701
+ viewBox: "0 0 24 24",
1702
+ fill: "none",
1703
+ ref: forwardRef2
1704
+ },
1705
+ /* @__PURE__ */ React.createElement("path", {
1706
+ stroke: "currentColor",
1707
+ strokeLinecap: "round",
1708
+ strokeLinejoin: "round",
1709
+ strokeWidth: 2,
1710
+ 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"
1711
+ }),
1712
+ /* @__PURE__ */ React.createElement("path", {
1713
+ fill: "currentColor",
1714
+ d: "m13 7 3-3a2.828 2.828 0 1 1 4 4l-3 3-4-4ZM4 17.5 6.5 20H4v-2.5Z"
1715
+ })
1716
+ )
1717
+ );
1718
+
1587
1719
  const IconFactoryHouse = forwardRef(
1588
1720
  ({ size = "medium", ...props }, forwardRef2) => createElement(
1589
1721
  StyledIcon,
@@ -1831,6 +1963,58 @@ const IconHand = forwardRef(
1831
1963
  )
1832
1964
  );
1833
1965
 
1966
+ const IconHighlighterUnderline = forwardRef(
1967
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
1968
+ StyledIcon,
1969
+ {
1970
+ ...props,
1971
+ size,
1972
+ viewBox: "0 0 24 24",
1973
+ fill: "none",
1974
+ ref: forwardRef2
1975
+ },
1976
+ /* @__PURE__ */ React.createElement("rect", {
1977
+ width: 18,
1978
+ height: 2,
1979
+ x: 3,
1980
+ y: 20,
1981
+ fill: "currentColor",
1982
+ rx: 0.5
1983
+ }),
1984
+ /* @__PURE__ */ React.createElement("path", {
1985
+ fill: "currentColor",
1986
+ 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"
1987
+ })
1988
+ )
1989
+ );
1990
+
1991
+ const IconHighlighter = forwardRef(
1992
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
1993
+ StyledIcon,
1994
+ {
1995
+ ...props,
1996
+ size,
1997
+ viewBox: "0 0 24 24",
1998
+ fill: "none",
1999
+ ref: forwardRef2
2000
+ },
2001
+ /* @__PURE__ */ React.createElement("g", {
2002
+ clipPath: "url(#a)"
2003
+ }, /* @__PURE__ */ React.createElement("path", {
2004
+ stroke: "currentColor",
2005
+ strokeLinecap: "round",
2006
+ strokeLinejoin: "round",
2007
+ strokeWidth: 2,
2008
+ 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"
2009
+ })),
2010
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
2011
+ id: "a"
2012
+ }, /* @__PURE__ */ React.createElement("path", {
2013
+ d: "M0 0h24v24H0z"
2014
+ })))
2015
+ )
2016
+ );
2017
+
1834
2018
  const IconHouse = forwardRef(
1835
2019
  ({ size = "medium", ...props }, forwardRef2) => createElement(
1836
2020
  StyledIcon,
@@ -1988,6 +2172,33 @@ const IconLaptop = forwardRef(
1988
2172
  )
1989
2173
  );
1990
2174
 
2175
+ const IconLasso = forwardRef(
2176
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
2177
+ StyledIcon,
2178
+ {
2179
+ ...props,
2180
+ size,
2181
+ viewBox: "0 0 24 24",
2182
+ fill: "none",
2183
+ ref: forwardRef2
2184
+ },
2185
+ /* @__PURE__ */ React.createElement("g", {
2186
+ clipPath: "url(#a)"
2187
+ }, /* @__PURE__ */ React.createElement("path", {
2188
+ stroke: "currentColor",
2189
+ strokeDasharray: "1 3",
2190
+ strokeLinecap: "round",
2191
+ strokeWidth: 2,
2192
+ 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"
2193
+ })),
2194
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
2195
+ id: "a"
2196
+ }, /* @__PURE__ */ React.createElement("path", {
2197
+ d: "M0 0h24v24H0z"
2198
+ })))
2199
+ )
2200
+ );
2201
+
1991
2202
  const IconLayout = forwardRef(
1992
2203
  ({ size = "medium", ...props }, forwardRef2) => createElement(
1993
2204
  StyledIcon,
@@ -2070,6 +2281,60 @@ const IconLightning = forwardRef(
2070
2281
  )
2071
2282
  );
2072
2283
 
2284
+ const IconLineCurved = forwardRef(
2285
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
2286
+ StyledIcon,
2287
+ {
2288
+ ...props,
2289
+ size,
2290
+ viewBox: "0 0 24 24",
2291
+ fill: "none",
2292
+ ref: forwardRef2
2293
+ },
2294
+ /* @__PURE__ */ React.createElement("g", {
2295
+ clipPath: "url(#a)"
2296
+ }, /* @__PURE__ */ React.createElement("path", {
2297
+ stroke: "currentColor",
2298
+ strokeLinecap: "round",
2299
+ strokeLinejoin: "round",
2300
+ strokeWidth: 2,
2301
+ d: "M2 12s2.767-2.553 5-3c4.466-.893 5.534 6.893 10 6 2.233-.447 5-3 5-3"
2302
+ })),
2303
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
2304
+ id: "a"
2305
+ }, /* @__PURE__ */ React.createElement("path", {
2306
+ d: "M0 0h24v24H0z"
2307
+ })))
2308
+ )
2309
+ );
2310
+
2311
+ const IconLineDashed = forwardRef(
2312
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
2313
+ StyledIcon,
2314
+ {
2315
+ ...props,
2316
+ size,
2317
+ viewBox: "0 0 24 24",
2318
+ fill: "none",
2319
+ ref: forwardRef2
2320
+ },
2321
+ /* @__PURE__ */ React.createElement("g", {
2322
+ clipPath: "url(#a)"
2323
+ }, /* @__PURE__ */ React.createElement("path", {
2324
+ stroke: "currentColor",
2325
+ strokeLinecap: "round",
2326
+ strokeLinejoin: "round",
2327
+ strokeWidth: 2,
2328
+ d: "M2 12h4m4 0h4m4 0h4"
2329
+ })),
2330
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
2331
+ id: "a"
2332
+ }, /* @__PURE__ */ React.createElement("path", {
2333
+ d: "M0 0h24v24H0z"
2334
+ })))
2335
+ )
2336
+ );
2337
+
2073
2338
  const IconLineDiagonal = forwardRef(
2074
2339
  ({ size = "medium", ...props }, forwardRef2) => createElement(
2075
2340
  StyledIcon,
@@ -2096,6 +2361,111 @@ const IconLineDiagonal = forwardRef(
2096
2361
  )
2097
2362
  );
2098
2363
 
2364
+ const IconLineDotted = forwardRef(
2365
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
2366
+ StyledIcon,
2367
+ {
2368
+ ...props,
2369
+ size,
2370
+ viewBox: "0 0 24 24",
2371
+ fill: "none",
2372
+ ref: forwardRef2
2373
+ },
2374
+ /* @__PURE__ */ React.createElement("g", {
2375
+ fill: "currentColor",
2376
+ clipPath: "url(#a)"
2377
+ }, /* @__PURE__ */ React.createElement("path", {
2378
+ 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"
2379
+ })),
2380
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
2381
+ id: "a"
2382
+ }, /* @__PURE__ */ React.createElement("path", {
2383
+ d: "M0 0h24v24H0z"
2384
+ })))
2385
+ )
2386
+ );
2387
+
2388
+ const IconLineHorizontal = forwardRef(
2389
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
2390
+ StyledIcon,
2391
+ {
2392
+ ...props,
2393
+ size,
2394
+ viewBox: "0 0 24 24",
2395
+ fill: "none",
2396
+ ref: forwardRef2
2397
+ },
2398
+ /* @__PURE__ */ React.createElement("g", {
2399
+ clipPath: "url(#a)"
2400
+ }, /* @__PURE__ */ React.createElement("path", {
2401
+ stroke: "currentColor",
2402
+ strokeLinecap: "round",
2403
+ strokeLinejoin: "round",
2404
+ strokeWidth: 2,
2405
+ d: "M3 12h18"
2406
+ })),
2407
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
2408
+ id: "a"
2409
+ }, /* @__PURE__ */ React.createElement("path", {
2410
+ d: "M0 0h24v24H0z"
2411
+ })))
2412
+ )
2413
+ );
2414
+
2415
+ const IconLineOrthogonal = forwardRef(
2416
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
2417
+ StyledIcon,
2418
+ {
2419
+ ...props,
2420
+ size,
2421
+ viewBox: "0 0 24 24",
2422
+ fill: "none",
2423
+ ref: forwardRef2
2424
+ },
2425
+ /* @__PURE__ */ React.createElement("g", {
2426
+ clipPath: "url(#a)"
2427
+ }, /* @__PURE__ */ React.createElement("path", {
2428
+ stroke: "currentColor",
2429
+ strokeLinecap: "round",
2430
+ strokeLinejoin: "round",
2431
+ strokeWidth: 2,
2432
+ d: "M2 16h10V8h10"
2433
+ })),
2434
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
2435
+ id: "a"
2436
+ }, /* @__PURE__ */ React.createElement("path", {
2437
+ d: "M0 0h24v24H0z"
2438
+ })))
2439
+ )
2440
+ );
2441
+
2442
+ const IconLineStraight = forwardRef(
2443
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
2444
+ StyledIcon,
2445
+ {
2446
+ ...props,
2447
+ size,
2448
+ viewBox: "0 0 24 24",
2449
+ fill: "none",
2450
+ ref: forwardRef2
2451
+ },
2452
+ /* @__PURE__ */ React.createElement("g", {
2453
+ clipPath: "url(#a)"
2454
+ }, /* @__PURE__ */ React.createElement("path", {
2455
+ stroke: "currentColor",
2456
+ strokeLinecap: "round",
2457
+ strokeLinejoin: "round",
2458
+ strokeWidth: 2,
2459
+ d: "m3 15 18-6"
2460
+ })),
2461
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
2462
+ id: "a"
2463
+ }, /* @__PURE__ */ React.createElement("path", {
2464
+ d: "M0 0h24v24H0z"
2465
+ })))
2466
+ )
2467
+ );
2468
+
2099
2469
  const IconLinesThreeHorizontalLineVerticalCenter = forwardRef(
2100
2470
  ({ size = "medium", ...props }, forwardRef2) => createElement(
2101
2471
  StyledIcon,
@@ -2194,6 +2564,57 @@ const IconLink = forwardRef(
2194
2564
  )
2195
2565
  );
2196
2566
 
2567
+ const IconListBullets = forwardRef(
2568
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
2569
+ StyledIcon,
2570
+ {
2571
+ ...props,
2572
+ size,
2573
+ viewBox: "0 0 24 24",
2574
+ fill: "none",
2575
+ ref: forwardRef2
2576
+ },
2577
+ /* @__PURE__ */ React.createElement("path", {
2578
+ stroke: "currentColor",
2579
+ strokeLinecap: "round",
2580
+ strokeLinejoin: "round",
2581
+ strokeWidth: 2,
2582
+ d: "M9 5h12M9 12h12M9 19h12"
2583
+ }),
2584
+ /* @__PURE__ */ React.createElement("path", {
2585
+ fill: "currentColor",
2586
+ 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"
2587
+ })
2588
+ )
2589
+ );
2590
+
2591
+ const IconListNumbers = forwardRef(
2592
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
2593
+ StyledIcon,
2594
+ {
2595
+ ...props,
2596
+ size,
2597
+ viewBox: "0 0 24 24",
2598
+ fill: "none",
2599
+ ref: forwardRef2
2600
+ },
2601
+ /* @__PURE__ */ React.createElement("g", {
2602
+ clipPath: "url(#a)"
2603
+ }, /* @__PURE__ */ React.createElement("path", {
2604
+ stroke: "currentColor",
2605
+ strokeLinecap: "round",
2606
+ strokeLinejoin: "round",
2607
+ strokeWidth: 2,
2608
+ d: "M3 3h3v6m6-3h9M3 14h4v3H3v3h4m5-3h9"
2609
+ })),
2610
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
2611
+ id: "a"
2612
+ }, /* @__PURE__ */ React.createElement("path", {
2613
+ d: "M0 0h24v24H0z"
2614
+ })))
2615
+ )
2616
+ );
2617
+
2197
2618
  const IconLockClosed = forwardRef(
2198
2619
  ({ size = "medium", ...props }, forwardRef2) => createElement(
2199
2620
  StyledIcon,
@@ -2384,7 +2805,7 @@ const IconMinus = forwardRef(
2384
2805
  stroke: "currentColor",
2385
2806
  strokeLinecap: "round",
2386
2807
  strokeWidth: 2,
2387
- d: "M5 12h14"
2808
+ d: "M6 12h12"
2388
2809
  })
2389
2810
  )
2390
2811
  );
@@ -2490,6 +2911,60 @@ const IconPdf = forwardRef(
2490
2911
  )
2491
2912
  );
2492
2913
 
2914
+ const IconPenTip = forwardRef(
2915
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
2916
+ StyledIcon,
2917
+ {
2918
+ ...props,
2919
+ size,
2920
+ viewBox: "0 0 24 24",
2921
+ fill: "none",
2922
+ ref: forwardRef2
2923
+ },
2924
+ /* @__PURE__ */ React.createElement("g", {
2925
+ clipPath: "url(#a)"
2926
+ }, /* @__PURE__ */ React.createElement("path", {
2927
+ stroke: "currentColor",
2928
+ strokeLinecap: "round",
2929
+ strokeLinejoin: "round",
2930
+ strokeWidth: 2,
2931
+ 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"
2932
+ })),
2933
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
2934
+ id: "a"
2935
+ }, /* @__PURE__ */ React.createElement("path", {
2936
+ d: "M0 0h24v24H0z"
2937
+ })))
2938
+ )
2939
+ );
2940
+
2941
+ const IconPen = forwardRef(
2942
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
2943
+ StyledIcon,
2944
+ {
2945
+ ...props,
2946
+ size,
2947
+ viewBox: "0 0 24 24",
2948
+ fill: "none",
2949
+ ref: forwardRef2
2950
+ },
2951
+ /* @__PURE__ */ React.createElement("g", {
2952
+ clipPath: "url(#a)"
2953
+ }, /* @__PURE__ */ React.createElement("path", {
2954
+ stroke: "currentColor",
2955
+ strokeLinecap: "round",
2956
+ strokeLinejoin: "round",
2957
+ strokeWidth: 2,
2958
+ 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"
2959
+ })),
2960
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
2961
+ id: "a"
2962
+ }, /* @__PURE__ */ React.createElement("path", {
2963
+ d: "M0 0h24v24H0z"
2964
+ })))
2965
+ )
2966
+ );
2967
+
2493
2968
  const IconPlaceholder = forwardRef(
2494
2969
  ({ size = "medium", ...props }, forwardRef2) => createElement(
2495
2970
  StyledIcon,
@@ -2575,6 +3050,33 @@ const IconPlug = forwardRef(
2575
3050
  )
2576
3051
  );
2577
3052
 
3053
+ const IconPlusText = forwardRef(
3054
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
3055
+ StyledIcon,
3056
+ {
3057
+ ...props,
3058
+ size,
3059
+ viewBox: "0 0 24 24",
3060
+ fill: "none",
3061
+ ref: forwardRef2
3062
+ },
3063
+ /* @__PURE__ */ React.createElement("g", {
3064
+ clipPath: "url(#a)"
3065
+ }, /* @__PURE__ */ React.createElement("path", {
3066
+ stroke: "currentColor",
3067
+ strokeLinecap: "round",
3068
+ strokeLinejoin: "round",
3069
+ strokeWidth: 2,
3070
+ d: "M7 5h7m7 0h-7m0 0v15M6 10v6m-3-3h6"
3071
+ })),
3072
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
3073
+ id: "a"
3074
+ }, /* @__PURE__ */ React.createElement("path", {
3075
+ d: "M0 0h24v24H0z"
3076
+ })))
3077
+ )
3078
+ );
3079
+
2578
3080
  const IconPlus = forwardRef(
2579
3081
  ({ size = "medium", ...props }, forwardRef2) => createElement(
2580
3082
  StyledIcon,
@@ -2594,6 +3096,31 @@ const IconPlus = forwardRef(
2594
3096
  )
2595
3097
  );
2596
3098
 
3099
+ const IconProhibit = forwardRef(
3100
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
3101
+ StyledIcon,
3102
+ {
3103
+ ...props,
3104
+ size,
3105
+ viewBox: "0 0 24 24",
3106
+ fill: "none",
3107
+ ref: forwardRef2
3108
+ },
3109
+ /* @__PURE__ */ React.createElement("g", {
3110
+ clipPath: "url(#a)"
3111
+ }, /* @__PURE__ */ React.createElement("path", {
3112
+ stroke: "currentColor",
3113
+ strokeWidth: 2,
3114
+ d: "M7 17 17 7m2.5 5a7.5 7.5 0 1 1-15 0 7.5 7.5 0 0 1 15 0Z"
3115
+ })),
3116
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
3117
+ id: "a"
3118
+ }, /* @__PURE__ */ React.createElement("path", {
3119
+ d: "M0 0h24v24H0z"
3120
+ })))
3121
+ )
3122
+ );
3123
+
2597
3124
  const IconPushPin = forwardRef(
2598
3125
  ({ size = "medium", ...props }, forwardRef2) => createElement(
2599
3126
  StyledIcon,
@@ -3584,6 +4111,129 @@ const IconTag = forwardRef(
3584
4111
  )
3585
4112
  );
3586
4113
 
4114
+ const IconTextAUnderline = forwardRef(
4115
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
4116
+ StyledIcon,
4117
+ {
4118
+ ...props,
4119
+ size,
4120
+ viewBox: "0 0 24 24",
4121
+ fill: "none",
4122
+ ref: forwardRef2
4123
+ },
4124
+ /* @__PURE__ */ React.createElement("rect", {
4125
+ width: 18,
4126
+ height: 2,
4127
+ x: 3,
4128
+ y: 19,
4129
+ fill: "currentColor",
4130
+ rx: 0.5
4131
+ }),
4132
+ /* @__PURE__ */ React.createElement("path", {
4133
+ fill: "currentColor",
4134
+ 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"
4135
+ })
4136
+ )
4137
+ );
4138
+
4139
+ const IconTextAlignCenter = forwardRef(
4140
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
4141
+ StyledIcon,
4142
+ {
4143
+ ...props,
4144
+ size,
4145
+ viewBox: "0 0 24 24",
4146
+ fill: "none",
4147
+ ref: forwardRef2
4148
+ },
4149
+ /* @__PURE__ */ React.createElement("g", {
4150
+ clipPath: "url(#a)"
4151
+ }, /* @__PURE__ */ React.createElement("path", {
4152
+ stroke: "currentColor",
4153
+ strokeLinecap: "round",
4154
+ strokeLinejoin: "round",
4155
+ strokeWidth: 2,
4156
+ d: "M5 6h14M8 10h8M5 14h14M8 18h8"
4157
+ })),
4158
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
4159
+ id: "a"
4160
+ }, /* @__PURE__ */ React.createElement("path", {
4161
+ d: "M0 0h24v24H0z"
4162
+ })))
4163
+ )
4164
+ );
4165
+
4166
+ const IconTextAlignLeft = forwardRef(
4167
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
4168
+ StyledIcon,
4169
+ {
4170
+ ...props,
4171
+ size,
4172
+ viewBox: "0 0 24 24",
4173
+ fill: "none",
4174
+ ref: forwardRef2
4175
+ },
4176
+ /* @__PURE__ */ React.createElement("g", {
4177
+ clipPath: "url(#a)"
4178
+ }, /* @__PURE__ */ React.createElement("path", {
4179
+ stroke: "currentColor",
4180
+ strokeLinecap: "round",
4181
+ strokeLinejoin: "round",
4182
+ strokeWidth: 2,
4183
+ d: "M5 6h14M5 12h7m-7 6h14"
4184
+ })),
4185
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
4186
+ id: "a"
4187
+ }, /* @__PURE__ */ React.createElement("path", {
4188
+ d: "M0 0h24v24H0z"
4189
+ })))
4190
+ )
4191
+ );
4192
+
4193
+ const IconTextBBoldItalicUnderlined = forwardRef(
4194
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
4195
+ StyledIcon,
4196
+ {
4197
+ ...props,
4198
+ size,
4199
+ viewBox: "0 0 24 24",
4200
+ fill: "none",
4201
+ ref: forwardRef2
4202
+ },
4203
+ /* @__PURE__ */ React.createElement("path", {
4204
+ fill: "currentColor",
4205
+ 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"
4206
+ })
4207
+ )
4208
+ );
4209
+
4210
+ const IconTextBBold = forwardRef(
4211
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
4212
+ StyledIcon,
4213
+ {
4214
+ ...props,
4215
+ size,
4216
+ viewBox: "0 0 24 24",
4217
+ fill: "none",
4218
+ ref: forwardRef2
4219
+ },
4220
+ /* @__PURE__ */ React.createElement("g", {
4221
+ clipPath: "url(#a)"
4222
+ }, /* @__PURE__ */ React.createElement("path", {
4223
+ stroke: "currentColor",
4224
+ strokeLinecap: "round",
4225
+ strokeLinejoin: "round",
4226
+ strokeWidth: 2.5,
4227
+ 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"
4228
+ })),
4229
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
4230
+ id: "a"
4231
+ }, /* @__PURE__ */ React.createElement("path", {
4232
+ d: "M0 0h24v24H0z"
4233
+ })))
4234
+ )
4235
+ );
4236
+
3587
4237
  const IconTextHOne = forwardRef(
3588
4238
  ({ size = "medium", ...props }, forwardRef2) => createElement(
3589
4239
  StyledIcon,
@@ -3665,6 +4315,139 @@ const IconTextHTwo = forwardRef(
3665
4315
  )
3666
4316
  );
3667
4317
 
4318
+ const IconTextIItalic = forwardRef(
4319
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
4320
+ StyledIcon,
4321
+ {
4322
+ ...props,
4323
+ size,
4324
+ viewBox: "0 0 24 24",
4325
+ fill: "none",
4326
+ ref: forwardRef2
4327
+ },
4328
+ /* @__PURE__ */ React.createElement("g", {
4329
+ clipPath: "url(#a)"
4330
+ }, /* @__PURE__ */ React.createElement("path", {
4331
+ stroke: "currentColor",
4332
+ strokeLinecap: "round",
4333
+ strokeWidth: 2,
4334
+ d: "M11 5h4m4 0h-4m0 0L9 19m0 0H5m4 0h4"
4335
+ })),
4336
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
4337
+ id: "a"
4338
+ }, /* @__PURE__ */ React.createElement("path", {
4339
+ d: "M0 0h24v24H0z"
4340
+ })))
4341
+ )
4342
+ );
4343
+
4344
+ const IconTextIndent = forwardRef(
4345
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
4346
+ StyledIcon,
4347
+ {
4348
+ ...props,
4349
+ size,
4350
+ viewBox: "0 0 24 24",
4351
+ fill: "none",
4352
+ ref: forwardRef2
4353
+ },
4354
+ /* @__PURE__ */ React.createElement("g", {
4355
+ clipPath: "url(#a)"
4356
+ }, /* @__PURE__ */ React.createElement("path", {
4357
+ stroke: "currentColor",
4358
+ strokeLinecap: "round",
4359
+ strokeLinejoin: "round",
4360
+ strokeWidth: 2,
4361
+ d: "M12 3v18M2 12h7m0 0L6 9m3 3-3 3m10-9h6m-6 6h3m-3 6h6"
4362
+ })),
4363
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
4364
+ id: "a"
4365
+ }, /* @__PURE__ */ React.createElement("path", {
4366
+ d: "M0 0h24v24H0z"
4367
+ })))
4368
+ )
4369
+ );
4370
+
4371
+ const IconTextLinesThree = forwardRef(
4372
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
4373
+ StyledIcon,
4374
+ {
4375
+ ...props,
4376
+ size,
4377
+ viewBox: "0 0 24 24",
4378
+ fill: "none",
4379
+ ref: forwardRef2
4380
+ },
4381
+ /* @__PURE__ */ React.createElement("g", {
4382
+ clipPath: "url(#a)"
4383
+ }, /* @__PURE__ */ React.createElement("path", {
4384
+ stroke: "currentColor",
4385
+ strokeLinecap: "round",
4386
+ strokeLinejoin: "round",
4387
+ strokeWidth: 2,
4388
+ d: "M4 6h15M4 12h15M4 18h9"
4389
+ })),
4390
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
4391
+ id: "a"
4392
+ }, /* @__PURE__ */ React.createElement("path", {
4393
+ d: "M0 0h24v24H0z"
4394
+ })))
4395
+ )
4396
+ );
4397
+
4398
+ const IconTextSStrikethrough = forwardRef(
4399
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
4400
+ StyledIcon,
4401
+ {
4402
+ ...props,
4403
+ size,
4404
+ viewBox: "0 0 24 24",
4405
+ fill: "none",
4406
+ ref: forwardRef2
4407
+ },
4408
+ /* @__PURE__ */ React.createElement("g", {
4409
+ clipPath: "url(#a)"
4410
+ }, /* @__PURE__ */ React.createElement("path", {
4411
+ stroke: "currentColor",
4412
+ strokeLinecap: "round",
4413
+ strokeLinejoin: "round",
4414
+ strokeWidth: 2,
4415
+ 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"
4416
+ })),
4417
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
4418
+ id: "a"
4419
+ }, /* @__PURE__ */ React.createElement("path", {
4420
+ d: "M0 0h24v24H0z"
4421
+ })))
4422
+ )
4423
+ );
4424
+
4425
+ const IconTextStyles = forwardRef(
4426
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
4427
+ StyledIcon,
4428
+ {
4429
+ ...props,
4430
+ size,
4431
+ viewBox: "0 0 24 24",
4432
+ fill: "none",
4433
+ ref: forwardRef2
4434
+ },
4435
+ /* @__PURE__ */ React.createElement("path", {
4436
+ stroke: "currentColor",
4437
+ strokeLinecap: "round",
4438
+ strokeLinejoin: "round",
4439
+ strokeWidth: 2,
4440
+ d: "M11.461 12 8 3l-3.462 9m6.923 0H4.538m6.923 0 .52 1.5M3 16l1.538-4"
4441
+ }),
4442
+ /* @__PURE__ */ React.createElement("path", {
4443
+ fill: "currentColor",
4444
+ fillRule: "evenodd",
4445
+ 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",
4446
+ clipRule: "evenodd"
4447
+ })
4448
+ )
4449
+ );
4450
+
3668
4451
  const IconTextT = forwardRef(
3669
4452
  ({ size = "medium", ...props }, forwardRef2) => createElement(
3670
4453
  StyledIcon,
@@ -3691,6 +4474,33 @@ const IconTextT = forwardRef(
3691
4474
  )
3692
4475
  );
3693
4476
 
4477
+ const IconTextUUnderlined = forwardRef(
4478
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
4479
+ StyledIcon,
4480
+ {
4481
+ ...props,
4482
+ size,
4483
+ viewBox: "0 0 24 24",
4484
+ fill: "none",
4485
+ ref: forwardRef2
4486
+ },
4487
+ /* @__PURE__ */ React.createElement("g", {
4488
+ clipPath: "url(#a)"
4489
+ }, /* @__PURE__ */ React.createElement("path", {
4490
+ stroke: "currentColor",
4491
+ strokeLinecap: "round",
4492
+ strokeLinejoin: "round",
4493
+ strokeWidth: 2,
4494
+ d: "M7 20h10M7 4v8c0 3 2.723 4 5 4s5-1 5-4V4"
4495
+ })),
4496
+ /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
4497
+ id: "a"
4498
+ }, /* @__PURE__ */ React.createElement("path", {
4499
+ d: "M0 0h24v24H0z"
4500
+ })))
4501
+ )
4502
+ );
4503
+
3694
4504
  const IconThumbsUp = forwardRef(
3695
4505
  ({ size = "medium", ...props }, forwardRef2) => createElement(
3696
4506
  StyledIcon,
@@ -4029,5 +4839,5 @@ const IconWallet = forwardRef(
4029
4839
  )
4030
4840
  );
4031
4841
 
4032
- export { IconAddLineBottom, IconAddLineRight, IconAlignBottom, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignRight, IconAlignTop, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowFatRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArticle, IconBarThree, IconBell, IconBellSlash, IconBellTilt, IconBookmark, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconCalendarBlank, IconCamera, IconCard, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconCheckMark, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconCircle, IconCircleMotionX, IconCircleNotch, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCluster, IconClustered, IconCog, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCursor, IconCursorFilled, IconDistributeHorizontal, IconDistributeVertical, IconEnvelope, IconExclamationPointCircle, IconFactory, IconFactoryHouse, IconFunnel, IconGauge, IconGlobe, IconGraduationCap, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHouse, IconImage, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLayout, IconLifesaver, IconLightning, IconLineDiagonal, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLink, IconLockClosed, IconLockOpen, IconMagnet, IconMagnifyingGlass, IconMap, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMouse, IconParallelogram, IconPauseCircle, IconPdf, IconPlaceholder, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPushPin, IconQuestionMarkCircle, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRhombus, IconScrollbarXy, IconShapes, IconShieldCheck, IconShieldLock, IconSidebarClosed, IconSidebarOpen, IconSlidersX, IconSlidersY, IconSocialFacebook, IconSocialInstagram, IconSocialLinkedin, IconSocialTwitter, IconSocialYoutube, IconSpeakerCross, IconSpeakerHigh, IconSplitVertical, IconSquare, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareLineSquareDashed, IconSquareRounded, IconSquareTriangleCirclePlus, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStickyNote, IconStopCircle, IconTag, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextT, IconThumbsUp, IconTicket, IconTimer, IconTrackpad, IconTrash, IconTrashSimple, IconTriangle, IconTrident, IconUser, IconUserAdd, IconUsers, IconViewCenter, IconViewSideLeft, IconWallet };
4842
+ export { IconAddLineBottom, IconAddLineRight, IconAlignBottom, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignRight, IconAlignTop, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowFatRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArticle, IconBarThree, IconBell, IconBellSlash, IconBellTilt, IconBookmark, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconCalendarBlank, IconCamera, IconCard, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconCheckMark, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconCircle, IconCircleMotionX, IconCircleNotch, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCluster, IconClustered, IconCog, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCube, IconCursor, IconCursorFilled, IconCursorText, IconCurveSquareCircleArrow, IconDistributeHorizontal, IconDistributeVertical, IconEnvelope, IconEraser, IconExclamationPointCircle, IconEyedropper, IconFactory, IconFactoryHouse, IconFunnel, IconGauge, IconGlobe, IconGraduationCap, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHighlighter, IconHighlighterUnderline, IconHouse, IconImage, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLink, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconMagnet, IconMagnifyingGlass, IconMap, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMouse, IconParallelogram, IconPauseCircle, IconPdf, IconPen, IconPenTip, IconPlaceholder, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusText, IconProhibit, IconPushPin, IconQuestionMarkCircle, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRhombus, IconScrollbarXy, IconShapes, IconShieldCheck, IconShieldLock, IconSidebarClosed, IconSidebarOpen, IconSlidersX, IconSlidersY, IconSocialFacebook, IconSocialInstagram, IconSocialLinkedin, IconSocialTwitter, IconSocialYoutube, IconSpeakerCross, IconSpeakerHigh, IconSplitVertical, IconSquare, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareLineSquareDashed, IconSquareRounded, IconSquareTriangleCirclePlus, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStickyNote, IconStopCircle, IconTag, IconTextAUnderline, IconTextAlignCenter, IconTextAlignLeft, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLinesThree, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTicket, IconTimer, IconTrackpad, IconTrash, IconTrashSimple, IconTriangle, IconTrident, IconUser, IconUserAdd, IconUsers, IconViewCenter, IconViewSideLeft, IconWallet };
4033
4843
  //# sourceMappingURL=module.js.map