@mirohq/design-system-icons 0.5.0 → 0.6.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 -12
- package/dist/main.js.map +1 -1
- package/dist/module.js +813 -13
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +61 -1
- package/package.json +1 -1
- package/react/add-line-bottom.tsx +33 -0
- package/react/add-line-right.tsx +33 -0
- package/react/align-center-horizontal.tsx +32 -0
- package/react/align-center-vertical.tsx +32 -0
- package/react/bookmark.tsx +34 -0
- package/react/distribute-horizontal.tsx +27 -0
- package/react/distribute-vertical.tsx +35 -0
- package/react/grid-four.tsx +34 -0
- package/react/grid-six.tsx +34 -0
- package/react/index.ts +30 -0
- package/react/layout.tsx +34 -0
- package/react/lines-three-horizontal-line-vertical-center.tsx +34 -0
- package/react/lines-three-horizontal.tsx +33 -0
- package/react/lines-three-vertical.tsx +33 -0
- package/react/rectangles-three-aligned.tsx +34 -0
- package/react/rectangles-three-free.tsx +34 -0
- package/react/rectangles-three-overlap.tsx +34 -0
- package/react/rectangles-two-line.tsx +34 -0
- package/react/split-vertical.tsx +34 -0
- package/react/square-line-square-dashed.tsx +34 -0
- package/react/squares-group.tsx +32 -0
- package/react/squares-merge.tsx +31 -0
- package/react/squares-two-overlap.tsx +34 -0
- package/react/squares-ungroup.tsx +31 -0
- package/react/squares-unmerge.tsx +34 -0
- package/react/stack.tsx +34 -0
- package/react/text-h-one.tsx +34 -0
- package/react/text-h-three.tsx +34 -0
- package/react/text-h-two.tsx +34 -0
- package/react/view-center.tsx +28 -0
- package/react/view-side-left.tsx +28 -0
- package/svg/24/add-line-bottom.svg +1 -0
- package/svg/24/add-line-right.svg +1 -0
- package/svg/24/align-center-horizontal.svg +1 -0
- package/svg/24/align-center-vertical.svg +1 -0
- package/svg/24/bookmark.svg +1 -0
- package/svg/24/distribute-horizontal.svg +1 -0
- package/svg/24/distribute-vertical.svg +1 -0
- package/svg/24/grid-four.svg +1 -0
- package/svg/24/grid-six.svg +1 -0
- package/svg/24/layout.svg +1 -0
- package/svg/24/lines-three-horizontal-line-vertical-center.svg +1 -0
- package/svg/24/lines-three-horizontal.svg +1 -0
- package/svg/24/lines-three-vertical.svg +1 -0
- package/svg/24/rectangles-three-aligned.svg +1 -0
- package/svg/24/rectangles-three-free.svg +1 -0
- package/svg/24/rectangles-three-overlap.svg +1 -0
- package/svg/24/rectangles-two-line.svg +1 -0
- package/svg/24/split-vertical.svg +1 -0
- package/svg/24/square-line-square-dashed.svg +1 -0
- package/svg/24/squares-group.svg +1 -0
- package/svg/24/squares-merge.svg +1 -0
- package/svg/24/squares-two-overlap.svg +1 -0
- package/svg/24/squares-ungroup.svg +1 -0
- package/svg/24/squares-unmerge.svg +1 -0
- package/svg/24/stack.svg +1 -0
- package/svg/24/text-h-one.svg +1 -0
- package/svg/24/text-h-three.svg +1 -0
- package/svg/24/text-h-two.svg +1 -0
- package/svg/24/view-center.svg +1 -0
- package/svg/24/view-side-left.svg +1 -0
- package/svg/meta.json +265 -0
package/dist/main.js
CHANGED
|
@@ -31,6 +31,58 @@ const StyledIcon = designSystemStitches.styled(designSystemPrimitive.Primitive.s
|
|
|
31
31
|
}
|
|
32
32
|
});
|
|
33
33
|
|
|
34
|
+
const IconAddLineBottom = React.forwardRef(
|
|
35
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
36
|
+
StyledIcon,
|
|
37
|
+
{
|
|
38
|
+
...props,
|
|
39
|
+
size,
|
|
40
|
+
viewBox: "0 0 24 24",
|
|
41
|
+
fill: "none",
|
|
42
|
+
ref: forwardRef2
|
|
43
|
+
},
|
|
44
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
45
|
+
clipPath: "url(#a)"
|
|
46
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
47
|
+
stroke: "currentColor",
|
|
48
|
+
strokeLinecap: "round",
|
|
49
|
+
strokeWidth: 2,
|
|
50
|
+
d: "M21 5H3m13 10h-4m0 0H8m4 0v-4m0 4v4"
|
|
51
|
+
})),
|
|
52
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
53
|
+
id: "a"
|
|
54
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
55
|
+
d: "M0 0h24v24H0z"
|
|
56
|
+
})))
|
|
57
|
+
)
|
|
58
|
+
);
|
|
59
|
+
|
|
60
|
+
const IconAddLineRight = React.forwardRef(
|
|
61
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
62
|
+
StyledIcon,
|
|
63
|
+
{
|
|
64
|
+
...props,
|
|
65
|
+
size,
|
|
66
|
+
viewBox: "0 0 24 24",
|
|
67
|
+
fill: "none",
|
|
68
|
+
ref: forwardRef2
|
|
69
|
+
},
|
|
70
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
71
|
+
clipPath: "url(#a)"
|
|
72
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
73
|
+
stroke: "currentColor",
|
|
74
|
+
strokeLinecap: "round",
|
|
75
|
+
strokeWidth: 2,
|
|
76
|
+
d: "M5 3v18M15 8v4m0 0v4m0-4h-4m4 0h4"
|
|
77
|
+
})),
|
|
78
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
79
|
+
id: "a"
|
|
80
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
81
|
+
d: "M0 0h24v24H0z"
|
|
82
|
+
})))
|
|
83
|
+
)
|
|
84
|
+
);
|
|
85
|
+
|
|
34
86
|
const IconAlignBottom = React.forwardRef(
|
|
35
87
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
36
88
|
StyledIcon,
|
|
@@ -56,6 +108,56 @@ const IconAlignBottom = React.forwardRef(
|
|
|
56
108
|
)
|
|
57
109
|
);
|
|
58
110
|
|
|
111
|
+
const IconAlignCenterHorizontal = React.forwardRef(
|
|
112
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
113
|
+
StyledIcon,
|
|
114
|
+
{
|
|
115
|
+
...props,
|
|
116
|
+
size,
|
|
117
|
+
viewBox: "0 0 24 24",
|
|
118
|
+
fill: "none",
|
|
119
|
+
ref: forwardRef2
|
|
120
|
+
},
|
|
121
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
122
|
+
stroke: "currentColor",
|
|
123
|
+
strokeLinecap: "round",
|
|
124
|
+
strokeLinejoin: "round",
|
|
125
|
+
strokeMiterlimit: 1.414,
|
|
126
|
+
strokeWidth: 2,
|
|
127
|
+
d: "M12 3v18"
|
|
128
|
+
}),
|
|
129
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
130
|
+
fill: "currentColor",
|
|
131
|
+
d: "M19.5 7a1.5 1.5 0 0 1 0 3h-15a1.5 1.5 0 1 1 0-3h15Zm-3 7a1.5 1.5 0 0 1 0 3h-9a1.5 1.5 0 0 1 0-3h9Z"
|
|
132
|
+
})
|
|
133
|
+
)
|
|
134
|
+
);
|
|
135
|
+
|
|
136
|
+
const IconAlignCenterVertical = React.forwardRef(
|
|
137
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
138
|
+
StyledIcon,
|
|
139
|
+
{
|
|
140
|
+
...props,
|
|
141
|
+
size,
|
|
142
|
+
viewBox: "0 0 24 24",
|
|
143
|
+
fill: "none",
|
|
144
|
+
ref: forwardRef2
|
|
145
|
+
},
|
|
146
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
147
|
+
stroke: "currentColor",
|
|
148
|
+
strokeLinecap: "round",
|
|
149
|
+
strokeLinejoin: "round",
|
|
150
|
+
strokeMiterlimit: 1.414,
|
|
151
|
+
strokeWidth: 2,
|
|
152
|
+
d: "M3 12h18"
|
|
153
|
+
}),
|
|
154
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
155
|
+
fill: "currentColor",
|
|
156
|
+
d: "M7 4.5a1.5 1.5 0 1 1 3 0v15a1.5 1.5 0 0 1-3 0v-15Zm7 3a1.5 1.5 0 0 1 3 0v9a1.5 1.5 0 0 1-3 0v-9Z"
|
|
157
|
+
})
|
|
158
|
+
)
|
|
159
|
+
);
|
|
160
|
+
|
|
59
161
|
const IconAlignLeft = React.forwardRef(
|
|
60
162
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
61
163
|
StyledIcon,
|
|
@@ -602,6 +704,33 @@ const IconBell = React.forwardRef(
|
|
|
602
704
|
)
|
|
603
705
|
);
|
|
604
706
|
|
|
707
|
+
const IconBookmark = React.forwardRef(
|
|
708
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
709
|
+
StyledIcon,
|
|
710
|
+
{
|
|
711
|
+
...props,
|
|
712
|
+
size,
|
|
713
|
+
viewBox: "0 0 24 24",
|
|
714
|
+
fill: "none",
|
|
715
|
+
ref: forwardRef2
|
|
716
|
+
},
|
|
717
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
718
|
+
clipPath: "url(#a)"
|
|
719
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
720
|
+
stroke: "currentColor",
|
|
721
|
+
strokeLinecap: "round",
|
|
722
|
+
strokeLinejoin: "round",
|
|
723
|
+
strokeWidth: 2,
|
|
724
|
+
d: "M17.5 3h-11a.5.5 0 0 0-.5.5V21l6-4.5 6 4.5V3.5a.5.5 0 0 0-.5-.5Z"
|
|
725
|
+
})),
|
|
726
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
727
|
+
id: "a"
|
|
728
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
729
|
+
d: "M0 0h24v24H0z"
|
|
730
|
+
})))
|
|
731
|
+
)
|
|
732
|
+
);
|
|
733
|
+
|
|
605
734
|
const IconBracketsAngleSlash = React.forwardRef(
|
|
606
735
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
607
736
|
StyledIcon,
|
|
@@ -1366,6 +1495,61 @@ const IconCursor = React.forwardRef(
|
|
|
1366
1495
|
)
|
|
1367
1496
|
);
|
|
1368
1497
|
|
|
1498
|
+
const IconDistributeHorizontal = React.forwardRef(
|
|
1499
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1500
|
+
StyledIcon,
|
|
1501
|
+
{
|
|
1502
|
+
...props,
|
|
1503
|
+
size,
|
|
1504
|
+
viewBox: "0 0 24 24",
|
|
1505
|
+
fill: "none",
|
|
1506
|
+
ref: forwardRef2
|
|
1507
|
+
},
|
|
1508
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1509
|
+
stroke: "currentColor",
|
|
1510
|
+
strokeLinecap: "round",
|
|
1511
|
+
strokeWidth: 2,
|
|
1512
|
+
d: "M4 3v18M20 3v18"
|
|
1513
|
+
}),
|
|
1514
|
+
/* @__PURE__ */ React__default["default"].createElement("rect", {
|
|
1515
|
+
width: 4,
|
|
1516
|
+
height: 10,
|
|
1517
|
+
x: 10,
|
|
1518
|
+
y: 7,
|
|
1519
|
+
fill: "currentColor",
|
|
1520
|
+
rx: 2
|
|
1521
|
+
})
|
|
1522
|
+
)
|
|
1523
|
+
);
|
|
1524
|
+
|
|
1525
|
+
const IconDistributeVertical = React.forwardRef(
|
|
1526
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1527
|
+
StyledIcon,
|
|
1528
|
+
{
|
|
1529
|
+
...props,
|
|
1530
|
+
size,
|
|
1531
|
+
viewBox: "0 0 24 24",
|
|
1532
|
+
fill: "none",
|
|
1533
|
+
ref: forwardRef2
|
|
1534
|
+
},
|
|
1535
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1536
|
+
stroke: "currentColor",
|
|
1537
|
+
strokeLinecap: "round",
|
|
1538
|
+
strokeWidth: 2,
|
|
1539
|
+
d: "M21 4H3m18 16H3"
|
|
1540
|
+
}),
|
|
1541
|
+
/* @__PURE__ */ React__default["default"].createElement("rect", {
|
|
1542
|
+
width: 4,
|
|
1543
|
+
height: 10,
|
|
1544
|
+
x: 17,
|
|
1545
|
+
y: 10,
|
|
1546
|
+
fill: "currentColor",
|
|
1547
|
+
rx: 2,
|
|
1548
|
+
transform: "rotate(90 17 10)"
|
|
1549
|
+
})
|
|
1550
|
+
)
|
|
1551
|
+
);
|
|
1552
|
+
|
|
1369
1553
|
const IconEnvelope = React.forwardRef(
|
|
1370
1554
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1371
1555
|
StyledIcon,
|
|
@@ -1558,6 +1742,60 @@ const IconGraduationCap = React.forwardRef(
|
|
|
1558
1742
|
)
|
|
1559
1743
|
);
|
|
1560
1744
|
|
|
1745
|
+
const IconGridFour = React.forwardRef(
|
|
1746
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1747
|
+
StyledIcon,
|
|
1748
|
+
{
|
|
1749
|
+
...props,
|
|
1750
|
+
size,
|
|
1751
|
+
viewBox: "0 0 24 24",
|
|
1752
|
+
fill: "none",
|
|
1753
|
+
ref: forwardRef2
|
|
1754
|
+
},
|
|
1755
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
1756
|
+
clipPath: "url(#a)"
|
|
1757
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1758
|
+
stroke: "currentColor",
|
|
1759
|
+
strokeLinecap: "round",
|
|
1760
|
+
strokeLinejoin: "round",
|
|
1761
|
+
strokeWidth: 2,
|
|
1762
|
+
d: "M12 3H3.25a.25.25 0 0 0-.25.25V12m9-9h8.75a.25.25 0 0 1 .25.25V12m-9-9v18m0 0h8.75a.25.25 0 0 0 .25-.25V12m-9 9H3.25a.25.25 0 0 1-.25-.25V12m0 0h18"
|
|
1763
|
+
})),
|
|
1764
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1765
|
+
id: "a"
|
|
1766
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1767
|
+
d: "M0 0h24v24H0z"
|
|
1768
|
+
})))
|
|
1769
|
+
)
|
|
1770
|
+
);
|
|
1771
|
+
|
|
1772
|
+
const IconGridSix = React.forwardRef(
|
|
1773
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1774
|
+
StyledIcon,
|
|
1775
|
+
{
|
|
1776
|
+
...props,
|
|
1777
|
+
size,
|
|
1778
|
+
viewBox: "0 0 24 24",
|
|
1779
|
+
fill: "none",
|
|
1780
|
+
ref: forwardRef2
|
|
1781
|
+
},
|
|
1782
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
1783
|
+
clipPath: "url(#a)"
|
|
1784
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1785
|
+
stroke: "currentColor",
|
|
1786
|
+
strokeLinecap: "round",
|
|
1787
|
+
strokeLinejoin: "round",
|
|
1788
|
+
strokeWidth: 2,
|
|
1789
|
+
d: "M12 3H3.25a.25.25 0 0 0-.25.25V9m9-6h8.75a.25.25 0 0 1 .25.25V9m-9-6v18m0 0h8.75a.25.25 0 0 0 .25-.25V15m-9 6H3.25a.25.25 0 0 1-.25-.25V15m0-6h18M3 9v6m18-6v6M3 15h18"
|
|
1790
|
+
})),
|
|
1791
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
1792
|
+
id: "a"
|
|
1793
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1794
|
+
d: "M0 0h24v24H0z"
|
|
1795
|
+
})))
|
|
1796
|
+
)
|
|
1797
|
+
);
|
|
1798
|
+
|
|
1561
1799
|
const IconHandFilled = React.forwardRef(
|
|
1562
1800
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1563
1801
|
StyledIcon,
|
|
@@ -1758,6 +1996,33 @@ const IconLaptop = React.forwardRef(
|
|
|
1758
1996
|
)
|
|
1759
1997
|
);
|
|
1760
1998
|
|
|
1999
|
+
const IconLayout = 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 9v12h6M3 9V3h18v6M3 9h6m12 0v12H9M21 9H9m0 0v12"
|
|
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
|
+
|
|
1761
2026
|
const IconLifesaver = React.forwardRef(
|
|
1762
2027
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1763
2028
|
StyledIcon,
|
|
@@ -1839,7 +2104,7 @@ const IconLineDiagonal = React.forwardRef(
|
|
|
1839
2104
|
)
|
|
1840
2105
|
);
|
|
1841
2106
|
|
|
1842
|
-
const
|
|
2107
|
+
const IconLinesThreeHorizontalLineVerticalCenter = React.forwardRef(
|
|
1843
2108
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1844
2109
|
StyledIcon,
|
|
1845
2110
|
{
|
|
@@ -1849,16 +2114,24 @@ const IconLink = React.forwardRef(
|
|
|
1849
2114
|
fill: "none",
|
|
1850
2115
|
ref: forwardRef2
|
|
1851
2116
|
},
|
|
1852
|
-
/* @__PURE__ */ React__default["default"].createElement("
|
|
2117
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2118
|
+
clipPath: "url(#a)"
|
|
2119
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1853
2120
|
stroke: "currentColor",
|
|
1854
2121
|
strokeLinecap: "round",
|
|
2122
|
+
strokeLinejoin: "round",
|
|
1855
2123
|
strokeWidth: 2,
|
|
1856
|
-
d: "
|
|
1857
|
-
})
|
|
2124
|
+
d: "M4 5h8m8 0h-8m-8 7h16M4 19h8m8 0h-8m0-14v14"
|
|
2125
|
+
})),
|
|
2126
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2127
|
+
id: "a"
|
|
2128
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2129
|
+
d: "M0 0h24v24H0z"
|
|
2130
|
+
})))
|
|
1858
2131
|
)
|
|
1859
2132
|
);
|
|
1860
2133
|
|
|
1861
|
-
const
|
|
2134
|
+
const IconLinesThreeHorizontal = React.forwardRef(
|
|
1862
2135
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
1863
2136
|
StyledIcon,
|
|
1864
2137
|
{
|
|
@@ -1868,13 +2141,84 @@ const IconLockClosed = React.forwardRef(
|
|
|
1868
2141
|
fill: "none",
|
|
1869
2142
|
ref: forwardRef2
|
|
1870
2143
|
},
|
|
1871
|
-
/* @__PURE__ */ React__default["default"].createElement("
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
2144
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2145
|
+
clipPath: "url(#a)"
|
|
2146
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2147
|
+
stroke: "currentColor",
|
|
2148
|
+
strokeLinecap: "round",
|
|
2149
|
+
strokeWidth: 2,
|
|
2150
|
+
d: "M4 5h16M4 12h16M4 19h16"
|
|
2151
|
+
})),
|
|
2152
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2153
|
+
id: "a"
|
|
2154
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2155
|
+
d: "M0 0h24v24H0z"
|
|
2156
|
+
})))
|
|
2157
|
+
)
|
|
2158
|
+
);
|
|
2159
|
+
|
|
2160
|
+
const IconLinesThreeVertical = React.forwardRef(
|
|
2161
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2162
|
+
StyledIcon,
|
|
2163
|
+
{
|
|
2164
|
+
...props,
|
|
2165
|
+
size,
|
|
2166
|
+
viewBox: "0 0 24 24",
|
|
2167
|
+
fill: "none",
|
|
2168
|
+
ref: forwardRef2
|
|
2169
|
+
},
|
|
2170
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2171
|
+
clipPath: "url(#a)"
|
|
2172
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2173
|
+
stroke: "currentColor",
|
|
2174
|
+
strokeLinecap: "round",
|
|
2175
|
+
strokeWidth: 2,
|
|
2176
|
+
d: "M20 4v16M12 4v16M4 4v16"
|
|
2177
|
+
})),
|
|
2178
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2179
|
+
id: "a"
|
|
2180
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2181
|
+
d: "M0 0h24v24H0z"
|
|
2182
|
+
})))
|
|
2183
|
+
)
|
|
2184
|
+
);
|
|
2185
|
+
|
|
2186
|
+
const IconLink = React.forwardRef(
|
|
2187
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2188
|
+
StyledIcon,
|
|
2189
|
+
{
|
|
2190
|
+
...props,
|
|
2191
|
+
size,
|
|
2192
|
+
viewBox: "0 0 24 24",
|
|
2193
|
+
fill: "none",
|
|
2194
|
+
ref: forwardRef2
|
|
2195
|
+
},
|
|
2196
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2197
|
+
stroke: "currentColor",
|
|
2198
|
+
strokeLinecap: "round",
|
|
2199
|
+
strokeWidth: 2,
|
|
2200
|
+
d: "m7.757 11.293-3.182 3.182a3.5 3.5 0 0 0 4.95 4.95l3.182-3.182M10.939 8.11l3.535-3.535a3.5 3.5 0 1 1 4.95 4.95L15.89 13.06m-7.425 2.475 7.071-7.071"
|
|
2201
|
+
})
|
|
2202
|
+
)
|
|
2203
|
+
);
|
|
2204
|
+
|
|
2205
|
+
const IconLockClosed = React.forwardRef(
|
|
2206
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2207
|
+
StyledIcon,
|
|
2208
|
+
{
|
|
2209
|
+
...props,
|
|
2210
|
+
size,
|
|
2211
|
+
viewBox: "0 0 24 24",
|
|
2212
|
+
fill: "none",
|
|
2213
|
+
ref: forwardRef2
|
|
2214
|
+
},
|
|
2215
|
+
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
2216
|
+
cx: 12,
|
|
2217
|
+
cy: 16,
|
|
2218
|
+
r: 1,
|
|
2219
|
+
fill: "currentColor"
|
|
2220
|
+
}),
|
|
2221
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1878
2222
|
stroke: "currentColor",
|
|
1879
2223
|
strokeLinecap: "round",
|
|
1880
2224
|
strokeWidth: 2,
|
|
@@ -2301,6 +2645,114 @@ const IconQuestionMarkCircle = React.forwardRef(
|
|
|
2301
2645
|
)
|
|
2302
2646
|
);
|
|
2303
2647
|
|
|
2648
|
+
const IconRectanglesThreeAligned = React.forwardRef(
|
|
2649
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2650
|
+
StyledIcon,
|
|
2651
|
+
{
|
|
2652
|
+
...props,
|
|
2653
|
+
size,
|
|
2654
|
+
viewBox: "0 0 24 24",
|
|
2655
|
+
fill: "none",
|
|
2656
|
+
ref: forwardRef2
|
|
2657
|
+
},
|
|
2658
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2659
|
+
stroke: "currentColor",
|
|
2660
|
+
strokeLinecap: "round",
|
|
2661
|
+
strokeLinejoin: "round",
|
|
2662
|
+
strokeWidth: 2,
|
|
2663
|
+
clipPath: "url(#a)"
|
|
2664
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2665
|
+
d: "M11 4H3v8h8V4Zm6.063 12h-14v5h14v-5ZM19 4h-4v4h4V4Z"
|
|
2666
|
+
})),
|
|
2667
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2668
|
+
id: "a"
|
|
2669
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2670
|
+
d: "M0 0h24v24H0z"
|
|
2671
|
+
})))
|
|
2672
|
+
)
|
|
2673
|
+
);
|
|
2674
|
+
|
|
2675
|
+
const IconRectanglesThreeFree = React.forwardRef(
|
|
2676
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2677
|
+
StyledIcon,
|
|
2678
|
+
{
|
|
2679
|
+
...props,
|
|
2680
|
+
size,
|
|
2681
|
+
viewBox: "0 0 24 24",
|
|
2682
|
+
fill: "none",
|
|
2683
|
+
ref: forwardRef2
|
|
2684
|
+
},
|
|
2685
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2686
|
+
stroke: "currentColor",
|
|
2687
|
+
strokeLinecap: "round",
|
|
2688
|
+
strokeLinejoin: "round",
|
|
2689
|
+
strokeWidth: 2,
|
|
2690
|
+
clipPath: "url(#a)"
|
|
2691
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2692
|
+
d: "m12.818 4.852-7.69-2.205-2.205 7.69 7.69 2.205 2.205-7.69ZM19.063 16h-14v5h14v-5Zm.649-9.92-3.845 1.102 1.102 3.845 3.845-1.102-1.102-3.845Z"
|
|
2693
|
+
})),
|
|
2694
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2695
|
+
id: "a"
|
|
2696
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2697
|
+
d: "M0 0h24v24H0z"
|
|
2698
|
+
})))
|
|
2699
|
+
)
|
|
2700
|
+
);
|
|
2701
|
+
|
|
2702
|
+
const IconRectanglesThreeOverlap = React.forwardRef(
|
|
2703
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2704
|
+
StyledIcon,
|
|
2705
|
+
{
|
|
2706
|
+
...props,
|
|
2707
|
+
size,
|
|
2708
|
+
viewBox: "0 0 24 24",
|
|
2709
|
+
fill: "none",
|
|
2710
|
+
ref: forwardRef2
|
|
2711
|
+
},
|
|
2712
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2713
|
+
clipPath: "url(#a)"
|
|
2714
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2715
|
+
stroke: "currentColor",
|
|
2716
|
+
strokeLinecap: "round",
|
|
2717
|
+
strokeLinejoin: "round",
|
|
2718
|
+
strokeWidth: 2,
|
|
2719
|
+
d: "M8 11H4v10h9v-4m-5-6h5v6m-5-6V7h4m1 10h4v-4m-5-6h5v6m-5-6V3h9v10h-4"
|
|
2720
|
+
})),
|
|
2721
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2722
|
+
id: "a"
|
|
2723
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2724
|
+
d: "M0 0h24v24H0z"
|
|
2725
|
+
})))
|
|
2726
|
+
)
|
|
2727
|
+
);
|
|
2728
|
+
|
|
2729
|
+
const IconRectanglesTwoLine = React.forwardRef(
|
|
2730
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2731
|
+
StyledIcon,
|
|
2732
|
+
{
|
|
2733
|
+
...props,
|
|
2734
|
+
size,
|
|
2735
|
+
viewBox: "0 0 24 24",
|
|
2736
|
+
fill: "none",
|
|
2737
|
+
ref: forwardRef2
|
|
2738
|
+
},
|
|
2739
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
2740
|
+
clipPath: "url(#a)"
|
|
2741
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2742
|
+
stroke: "currentColor",
|
|
2743
|
+
strokeLinecap: "round",
|
|
2744
|
+
strokeLinejoin: "round",
|
|
2745
|
+
strokeWidth: 2,
|
|
2746
|
+
d: "M21 3v18M3.25 4h11.5a.25.25 0 0 1 .25.25v5.5a.25.25 0 0 1-.25.25H3.25A.25.25 0 0 1 3 9.75v-5.5A.25.25 0 0 1 3.25 4Zm0 10h11.5a.25.25 0 0 1 .25.25v5.5a.25.25 0 0 1-.25.25H3.25a.25.25 0 0 1-.25-.25v-5.5a.25.25 0 0 1 .25-.25Z"
|
|
2747
|
+
})),
|
|
2748
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
2749
|
+
id: "a"
|
|
2750
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
2751
|
+
d: "M0 0h24v24H0z"
|
|
2752
|
+
})))
|
|
2753
|
+
)
|
|
2754
|
+
);
|
|
2755
|
+
|
|
2304
2756
|
const IconRhombus = React.forwardRef(
|
|
2305
2757
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2306
2758
|
StyledIcon,
|
|
@@ -2675,6 +3127,33 @@ const IconSpeakerHigh = React.forwardRef(
|
|
|
2675
3127
|
)
|
|
2676
3128
|
);
|
|
2677
3129
|
|
|
3130
|
+
const IconSplitVertical = React.forwardRef(
|
|
3131
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3132
|
+
StyledIcon,
|
|
3133
|
+
{
|
|
3134
|
+
...props,
|
|
3135
|
+
size,
|
|
3136
|
+
viewBox: "0 0 24 24",
|
|
3137
|
+
fill: "none",
|
|
3138
|
+
ref: forwardRef2
|
|
3139
|
+
},
|
|
3140
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
3141
|
+
clipPath: "url(#a)"
|
|
3142
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3143
|
+
stroke: "currentColor",
|
|
3144
|
+
strokeLinecap: "round",
|
|
3145
|
+
strokeLinejoin: "round",
|
|
3146
|
+
strokeWidth: 2,
|
|
3147
|
+
d: "M5 6.5V4h14v2.5M2 12h20M5 17.5V20h14v-2.5"
|
|
3148
|
+
})),
|
|
3149
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
3150
|
+
id: "a"
|
|
3151
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3152
|
+
d: "M0 0h24v24H0z"
|
|
3153
|
+
})))
|
|
3154
|
+
)
|
|
3155
|
+
);
|
|
3156
|
+
|
|
2678
3157
|
const IconSquareBracketsAngleSlash = React.forwardRef(
|
|
2679
3158
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2680
3159
|
StyledIcon,
|
|
@@ -2724,6 +3203,33 @@ const IconSquareCirclesTwo = React.forwardRef(
|
|
|
2724
3203
|
)
|
|
2725
3204
|
);
|
|
2726
3205
|
|
|
3206
|
+
const IconSquareLineSquareDashed = React.forwardRef(
|
|
3207
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3208
|
+
StyledIcon,
|
|
3209
|
+
{
|
|
3210
|
+
...props,
|
|
3211
|
+
size,
|
|
3212
|
+
viewBox: "0 0 24 24",
|
|
3213
|
+
fill: "none",
|
|
3214
|
+
ref: forwardRef2
|
|
3215
|
+
},
|
|
3216
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
3217
|
+
clipPath: "url(#a)"
|
|
3218
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3219
|
+
stroke: "currentColor",
|
|
3220
|
+
strokeLinecap: "round",
|
|
3221
|
+
strokeLinejoin: "round",
|
|
3222
|
+
strokeWidth: 2,
|
|
3223
|
+
d: "M18 3h3v3m0 4v4m0 4v3h-3m-4 0h-4m-4 0H3v-3M3 3h11v11H3V3Z"
|
|
3224
|
+
})),
|
|
3225
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
3226
|
+
id: "a"
|
|
3227
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3228
|
+
d: "M0 0h24v24H0z"
|
|
3229
|
+
})))
|
|
3230
|
+
)
|
|
3231
|
+
);
|
|
3232
|
+
|
|
2727
3233
|
const IconSquareRounded = React.forwardRef(
|
|
2728
3234
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2729
3235
|
StyledIcon,
|
|
@@ -2826,6 +3332,58 @@ const IconSquaresFour = React.forwardRef(
|
|
|
2826
3332
|
)
|
|
2827
3333
|
);
|
|
2828
3334
|
|
|
3335
|
+
const IconSquaresGroup = React.forwardRef(
|
|
3336
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3337
|
+
StyledIcon,
|
|
3338
|
+
{
|
|
3339
|
+
...props,
|
|
3340
|
+
size,
|
|
3341
|
+
viewBox: "0 0 24 24",
|
|
3342
|
+
fill: "none",
|
|
3343
|
+
ref: forwardRef2
|
|
3344
|
+
},
|
|
3345
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3346
|
+
stroke: "currentColor",
|
|
3347
|
+
strokeLinecap: "round",
|
|
3348
|
+
strokeLinejoin: "round",
|
|
3349
|
+
strokeWidth: 2,
|
|
3350
|
+
d: "M20 4H4v16h16V4Z"
|
|
3351
|
+
}),
|
|
3352
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3353
|
+
fill: "currentColor",
|
|
3354
|
+
d: "M2 2h3v3H2V2Zm17 0h3v3h-3V2Zm0 17h3v3h-3v-3ZM2 19h3v3H2v-3Zm9-12h6v6h-6V7Z"
|
|
3355
|
+
}),
|
|
3356
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3357
|
+
fill: "currentColor",
|
|
3358
|
+
d: "M7 11h3v3h3v3H7v-6Z"
|
|
3359
|
+
})
|
|
3360
|
+
)
|
|
3361
|
+
);
|
|
3362
|
+
|
|
3363
|
+
const IconSquaresMerge = React.forwardRef(
|
|
3364
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3365
|
+
StyledIcon,
|
|
3366
|
+
{
|
|
3367
|
+
...props,
|
|
3368
|
+
size,
|
|
3369
|
+
viewBox: "0 0 24 24",
|
|
3370
|
+
fill: "none",
|
|
3371
|
+
ref: forwardRef2
|
|
3372
|
+
},
|
|
3373
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
3374
|
+
clipPath: "url(#a)"
|
|
3375
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3376
|
+
fill: "currentColor",
|
|
3377
|
+
d: "M9 3V2a1 1 0 0 0-1 1h1Zm12 0h1a1 1 0 0 0-1-1v1Zm0 12v1a1 1 0 0 0 1-1h-1Zm-6 0v-1h-1v1h1Zm0 6v1a1 1 0 0 0 1-1h-1ZM3 21H2a1 1 0 0 0 1 1v-1ZM3 9V8a1 1 0 0 0-1 1h1Zm6 0v1h1V9H9Zm0-5h12V2H9v2Zm11-1v12h2V3h-2Zm1 11h-6v2h6v-2Zm-7 1v6h2v-6h-2Zm1 5H3v2h12v-2ZM4 21V9H2v12h2ZM3 10h6V8H3v2Zm7-1V3H8v6h2Z"
|
|
3378
|
+
})),
|
|
3379
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
3380
|
+
id: "a"
|
|
3381
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3382
|
+
d: "M0 0h24v24H0z"
|
|
3383
|
+
})))
|
|
3384
|
+
)
|
|
3385
|
+
);
|
|
3386
|
+
|
|
2829
3387
|
const IconSquaresThree = React.forwardRef(
|
|
2830
3388
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2831
3389
|
StyledIcon,
|
|
@@ -2852,6 +3410,111 @@ const IconSquaresThree = React.forwardRef(
|
|
|
2852
3410
|
)
|
|
2853
3411
|
);
|
|
2854
3412
|
|
|
3413
|
+
const IconSquaresTwoOverlap = React.forwardRef(
|
|
3414
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3415
|
+
StyledIcon,
|
|
3416
|
+
{
|
|
3417
|
+
...props,
|
|
3418
|
+
size,
|
|
3419
|
+
viewBox: "0 0 24 24",
|
|
3420
|
+
fill: "none",
|
|
3421
|
+
ref: forwardRef2
|
|
3422
|
+
},
|
|
3423
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
3424
|
+
clipPath: "url(#a)"
|
|
3425
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3426
|
+
stroke: "currentColor",
|
|
3427
|
+
strokeLinecap: "round",
|
|
3428
|
+
strokeLinejoin: "round",
|
|
3429
|
+
strokeWidth: 2,
|
|
3430
|
+
d: "M9 5V3h12v12h-2M3 9h12v12H3V9Z"
|
|
3431
|
+
})),
|
|
3432
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
3433
|
+
id: "a"
|
|
3434
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3435
|
+
d: "M0 0h24v24H0z"
|
|
3436
|
+
})))
|
|
3437
|
+
)
|
|
3438
|
+
);
|
|
3439
|
+
|
|
3440
|
+
const IconSquaresUngroup = React.forwardRef(
|
|
3441
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3442
|
+
StyledIcon,
|
|
3443
|
+
{
|
|
3444
|
+
...props,
|
|
3445
|
+
size,
|
|
3446
|
+
viewBox: "0 0 24 24",
|
|
3447
|
+
fill: "none",
|
|
3448
|
+
ref: forwardRef2
|
|
3449
|
+
},
|
|
3450
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3451
|
+
stroke: "currentColor",
|
|
3452
|
+
strokeLinecap: "round",
|
|
3453
|
+
strokeLinejoin: "round",
|
|
3454
|
+
strokeWidth: 2,
|
|
3455
|
+
d: "M10 10v4h4m-4-4V4h10v10h-6m-4-4H4v10h10v-6"
|
|
3456
|
+
}),
|
|
3457
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3458
|
+
fill: "currentColor",
|
|
3459
|
+
d: "M8 2h3v3H8V2Zm11 0h3v3h-3V2Zm0 11h3v3h-3v-3ZM8 13h3v3H8v-3ZM2 8h3v3H2V8Zm0 11h3v3H2v-3Zm11 0h3v3h-3v-3Z"
|
|
3460
|
+
})
|
|
3461
|
+
)
|
|
3462
|
+
);
|
|
3463
|
+
|
|
3464
|
+
const IconSquaresUnmerge = React.forwardRef(
|
|
3465
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3466
|
+
StyledIcon,
|
|
3467
|
+
{
|
|
3468
|
+
...props,
|
|
3469
|
+
size,
|
|
3470
|
+
viewBox: "0 0 24 24",
|
|
3471
|
+
fill: "none",
|
|
3472
|
+
ref: forwardRef2
|
|
3473
|
+
},
|
|
3474
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
3475
|
+
clipPath: "url(#a)"
|
|
3476
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3477
|
+
stroke: "currentColor",
|
|
3478
|
+
strokeLinecap: "round",
|
|
3479
|
+
strokeLinejoin: "round",
|
|
3480
|
+
strokeWidth: 2,
|
|
3481
|
+
d: "M9 3h12v12H9V3Zm6 6H3v12h12V9Z"
|
|
3482
|
+
})),
|
|
3483
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
3484
|
+
id: "a"
|
|
3485
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3486
|
+
d: "M0 0h24v24H0z"
|
|
3487
|
+
})))
|
|
3488
|
+
)
|
|
3489
|
+
);
|
|
3490
|
+
|
|
3491
|
+
const IconStack = React.forwardRef(
|
|
3492
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3493
|
+
StyledIcon,
|
|
3494
|
+
{
|
|
3495
|
+
...props,
|
|
3496
|
+
size,
|
|
3497
|
+
viewBox: "0 0 24 24",
|
|
3498
|
+
fill: "none",
|
|
3499
|
+
ref: forwardRef2
|
|
3500
|
+
},
|
|
3501
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
3502
|
+
clipPath: "url(#a)"
|
|
3503
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3504
|
+
stroke: "currentColor",
|
|
3505
|
+
strokeLinecap: "round",
|
|
3506
|
+
strokeLinejoin: "round",
|
|
3507
|
+
strokeWidth: 2,
|
|
3508
|
+
d: "m18 14 4 1.5L12 20 2 15.5 6 14m6-10 10 4.5L12 13 2 8.5 12 4Z"
|
|
3509
|
+
})),
|
|
3510
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
3511
|
+
id: "a"
|
|
3512
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3513
|
+
d: "M0 0h24v24H0z"
|
|
3514
|
+
})))
|
|
3515
|
+
)
|
|
3516
|
+
);
|
|
3517
|
+
|
|
2855
3518
|
const IconStickyNote = React.forwardRef(
|
|
2856
3519
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2857
3520
|
StyledIcon,
|
|
@@ -2929,6 +3592,87 @@ const IconTag = React.forwardRef(
|
|
|
2929
3592
|
)
|
|
2930
3593
|
);
|
|
2931
3594
|
|
|
3595
|
+
const IconTextHOne = React.forwardRef(
|
|
3596
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3597
|
+
StyledIcon,
|
|
3598
|
+
{
|
|
3599
|
+
...props,
|
|
3600
|
+
size,
|
|
3601
|
+
viewBox: "0 0 24 24",
|
|
3602
|
+
fill: "none",
|
|
3603
|
+
ref: forwardRef2
|
|
3604
|
+
},
|
|
3605
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
3606
|
+
clipPath: "url(#a)"
|
|
3607
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3608
|
+
stroke: "currentColor",
|
|
3609
|
+
strokeLinecap: "round",
|
|
3610
|
+
strokeLinejoin: "round",
|
|
3611
|
+
strokeWidth: 2,
|
|
3612
|
+
d: "M5 6v6m0 6v-6m0 0h7m0 0V6m0 6v6m5-12h3v12"
|
|
3613
|
+
})),
|
|
3614
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
3615
|
+
id: "a"
|
|
3616
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3617
|
+
d: "M0 0h24v24H0z"
|
|
3618
|
+
})))
|
|
3619
|
+
)
|
|
3620
|
+
);
|
|
3621
|
+
|
|
3622
|
+
const IconTextHThree = React.forwardRef(
|
|
3623
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3624
|
+
StyledIcon,
|
|
3625
|
+
{
|
|
3626
|
+
...props,
|
|
3627
|
+
size,
|
|
3628
|
+
viewBox: "0 0 24 24",
|
|
3629
|
+
fill: "none",
|
|
3630
|
+
ref: forwardRef2
|
|
3631
|
+
},
|
|
3632
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
3633
|
+
clipPath: "url(#a)"
|
|
3634
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3635
|
+
stroke: "currentColor",
|
|
3636
|
+
strokeLinecap: "round",
|
|
3637
|
+
strokeLinejoin: "round",
|
|
3638
|
+
strokeWidth: 2,
|
|
3639
|
+
d: "M4 6v6m0 6v-6m0 0h7m0 0V6m0 6v6m4-12h5v6m-5 0h5m0 0v6h-5"
|
|
3640
|
+
})),
|
|
3641
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
3642
|
+
id: "a"
|
|
3643
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3644
|
+
d: "M0 0h24v24H0z"
|
|
3645
|
+
})))
|
|
3646
|
+
)
|
|
3647
|
+
);
|
|
3648
|
+
|
|
3649
|
+
const IconTextHTwo = React.forwardRef(
|
|
3650
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3651
|
+
StyledIcon,
|
|
3652
|
+
{
|
|
3653
|
+
...props,
|
|
3654
|
+
size,
|
|
3655
|
+
viewBox: "0 0 24 24",
|
|
3656
|
+
fill: "none",
|
|
3657
|
+
ref: forwardRef2
|
|
3658
|
+
},
|
|
3659
|
+
/* @__PURE__ */ React__default["default"].createElement("g", {
|
|
3660
|
+
clipPath: "url(#a)"
|
|
3661
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3662
|
+
stroke: "currentColor",
|
|
3663
|
+
strokeLinecap: "round",
|
|
3664
|
+
strokeLinejoin: "round",
|
|
3665
|
+
strokeWidth: 2,
|
|
3666
|
+
d: "M4 6v6m0 6v-6m0 0h7m0 0V6m0 6v6m4-12h5v6h-5v6h5"
|
|
3667
|
+
})),
|
|
3668
|
+
/* @__PURE__ */ React__default["default"].createElement("defs", null, /* @__PURE__ */ React__default["default"].createElement("clipPath", {
|
|
3669
|
+
id: "a"
|
|
3670
|
+
}, /* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3671
|
+
d: "M0 0h24v24H0z"
|
|
3672
|
+
})))
|
|
3673
|
+
)
|
|
3674
|
+
);
|
|
3675
|
+
|
|
2932
3676
|
const IconTextT = React.forwardRef(
|
|
2933
3677
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
2934
3678
|
StyledIcon,
|
|
@@ -3214,6 +3958,62 @@ const IconUsers = React.forwardRef(
|
|
|
3214
3958
|
)
|
|
3215
3959
|
);
|
|
3216
3960
|
|
|
3961
|
+
const IconViewCenter = React.forwardRef(
|
|
3962
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3963
|
+
StyledIcon,
|
|
3964
|
+
{
|
|
3965
|
+
...props,
|
|
3966
|
+
size,
|
|
3967
|
+
viewBox: "0 0 24 24",
|
|
3968
|
+
fill: "none",
|
|
3969
|
+
ref: forwardRef2
|
|
3970
|
+
},
|
|
3971
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
3972
|
+
stroke: "currentColor",
|
|
3973
|
+
strokeLinecap: "round",
|
|
3974
|
+
strokeLinejoin: "round",
|
|
3975
|
+
strokeWidth: 2,
|
|
3976
|
+
d: "M19 4H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Z"
|
|
3977
|
+
}),
|
|
3978
|
+
/* @__PURE__ */ React__default["default"].createElement("rect", {
|
|
3979
|
+
width: 10,
|
|
3980
|
+
height: 8,
|
|
3981
|
+
x: 7,
|
|
3982
|
+
y: 8,
|
|
3983
|
+
fill: "currentColor",
|
|
3984
|
+
rx: 1
|
|
3985
|
+
})
|
|
3986
|
+
)
|
|
3987
|
+
);
|
|
3988
|
+
|
|
3989
|
+
const IconViewSideLeft = React.forwardRef(
|
|
3990
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3991
|
+
StyledIcon,
|
|
3992
|
+
{
|
|
3993
|
+
...props,
|
|
3994
|
+
size,
|
|
3995
|
+
viewBox: "0 0 24 24",
|
|
3996
|
+
fill: "none",
|
|
3997
|
+
ref: forwardRef2
|
|
3998
|
+
},
|
|
3999
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
4000
|
+
stroke: "currentColor",
|
|
4001
|
+
strokeLinecap: "round",
|
|
4002
|
+
strokeLinejoin: "round",
|
|
4003
|
+
strokeWidth: 2,
|
|
4004
|
+
d: "M19 4H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Z"
|
|
4005
|
+
}),
|
|
4006
|
+
/* @__PURE__ */ React__default["default"].createElement("rect", {
|
|
4007
|
+
width: 6,
|
|
4008
|
+
height: 10,
|
|
4009
|
+
x: 6,
|
|
4010
|
+
y: 7,
|
|
4011
|
+
fill: "currentColor",
|
|
4012
|
+
rx: 1
|
|
4013
|
+
})
|
|
4014
|
+
)
|
|
4015
|
+
);
|
|
4016
|
+
|
|
3217
4017
|
const IconWallet = React.forwardRef(
|
|
3218
4018
|
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
3219
4019
|
StyledIcon,
|
|
@@ -3237,7 +4037,11 @@ const IconWallet = React.forwardRef(
|
|
|
3237
4037
|
)
|
|
3238
4038
|
);
|
|
3239
4039
|
|
|
4040
|
+
exports.IconAddLineBottom = IconAddLineBottom;
|
|
4041
|
+
exports.IconAddLineRight = IconAddLineRight;
|
|
3240
4042
|
exports.IconAlignBottom = IconAlignBottom;
|
|
4043
|
+
exports.IconAlignCenterHorizontal = IconAlignCenterHorizontal;
|
|
4044
|
+
exports.IconAlignCenterVertical = IconAlignCenterVertical;
|
|
3241
4045
|
exports.IconAlignLeft = IconAlignLeft;
|
|
3242
4046
|
exports.IconAlignRight = IconAlignRight;
|
|
3243
4047
|
exports.IconAlignTop = IconAlignTop;
|
|
@@ -3262,6 +4066,7 @@ exports.IconBarThree = IconBarThree;
|
|
|
3262
4066
|
exports.IconBell = IconBell;
|
|
3263
4067
|
exports.IconBellSlash = IconBellSlash;
|
|
3264
4068
|
exports.IconBellTilt = IconBellTilt;
|
|
4069
|
+
exports.IconBookmark = IconBookmark;
|
|
3265
4070
|
exports.IconBracketsAngleSlash = IconBracketsAngleSlash;
|
|
3266
4071
|
exports.IconBracketsCurlyCirclesThree = IconBracketsCurlyCirclesThree;
|
|
3267
4072
|
exports.IconCalendarBlank = IconCalendarBlank;
|
|
@@ -3294,6 +4099,8 @@ exports.IconCross = IconCross;
|
|
|
3294
4099
|
exports.IconCrossCircle = IconCrossCircle;
|
|
3295
4100
|
exports.IconCursor = IconCursor;
|
|
3296
4101
|
exports.IconCursorFilled = IconCursorFilled;
|
|
4102
|
+
exports.IconDistributeHorizontal = IconDistributeHorizontal;
|
|
4103
|
+
exports.IconDistributeVertical = IconDistributeVertical;
|
|
3297
4104
|
exports.IconEnvelope = IconEnvelope;
|
|
3298
4105
|
exports.IconExclamationPointCircle = IconExclamationPointCircle;
|
|
3299
4106
|
exports.IconFactory = IconFactory;
|
|
@@ -3302,6 +4109,8 @@ exports.IconFunnel = IconFunnel;
|
|
|
3302
4109
|
exports.IconGauge = IconGauge;
|
|
3303
4110
|
exports.IconGlobe = IconGlobe;
|
|
3304
4111
|
exports.IconGraduationCap = IconGraduationCap;
|
|
4112
|
+
exports.IconGridFour = IconGridFour;
|
|
4113
|
+
exports.IconGridSix = IconGridSix;
|
|
3305
4114
|
exports.IconHand = IconHand;
|
|
3306
4115
|
exports.IconHandFilled = IconHandFilled;
|
|
3307
4116
|
exports.IconHouse = IconHouse;
|
|
@@ -3311,9 +4120,13 @@ exports.IconKanban = IconKanban;
|
|
|
3311
4120
|
exports.IconKey = IconKey;
|
|
3312
4121
|
exports.IconKeycap = IconKeycap;
|
|
3313
4122
|
exports.IconLaptop = IconLaptop;
|
|
4123
|
+
exports.IconLayout = IconLayout;
|
|
3314
4124
|
exports.IconLifesaver = IconLifesaver;
|
|
3315
4125
|
exports.IconLightning = IconLightning;
|
|
3316
4126
|
exports.IconLineDiagonal = IconLineDiagonal;
|
|
4127
|
+
exports.IconLinesThreeHorizontal = IconLinesThreeHorizontal;
|
|
4128
|
+
exports.IconLinesThreeHorizontalLineVerticalCenter = IconLinesThreeHorizontalLineVerticalCenter;
|
|
4129
|
+
exports.IconLinesThreeVertical = IconLinesThreeVertical;
|
|
3317
4130
|
exports.IconLink = IconLink;
|
|
3318
4131
|
exports.IconLockClosed = IconLockClosed;
|
|
3319
4132
|
exports.IconLockOpen = IconLockOpen;
|
|
@@ -3334,6 +4147,10 @@ exports.IconPlug = IconPlug;
|
|
|
3334
4147
|
exports.IconPlus = IconPlus;
|
|
3335
4148
|
exports.IconPushPin = IconPushPin;
|
|
3336
4149
|
exports.IconQuestionMarkCircle = IconQuestionMarkCircle;
|
|
4150
|
+
exports.IconRectanglesThreeAligned = IconRectanglesThreeAligned;
|
|
4151
|
+
exports.IconRectanglesThreeFree = IconRectanglesThreeFree;
|
|
4152
|
+
exports.IconRectanglesThreeOverlap = IconRectanglesThreeOverlap;
|
|
4153
|
+
exports.IconRectanglesTwoLine = IconRectanglesTwoLine;
|
|
3337
4154
|
exports.IconRhombus = IconRhombus;
|
|
3338
4155
|
exports.IconScrollbarXy = IconScrollbarXy;
|
|
3339
4156
|
exports.IconShapes = IconShapes;
|
|
@@ -3350,16 +4167,27 @@ exports.IconSocialTwitter = IconSocialTwitter;
|
|
|
3350
4167
|
exports.IconSocialYoutube = IconSocialYoutube;
|
|
3351
4168
|
exports.IconSpeakerCross = IconSpeakerCross;
|
|
3352
4169
|
exports.IconSpeakerHigh = IconSpeakerHigh;
|
|
4170
|
+
exports.IconSplitVertical = IconSplitVertical;
|
|
3353
4171
|
exports.IconSquare = IconSquare;
|
|
3354
4172
|
exports.IconSquareBracketsAngleSlash = IconSquareBracketsAngleSlash;
|
|
3355
4173
|
exports.IconSquareCirclesTwo = IconSquareCirclesTwo;
|
|
4174
|
+
exports.IconSquareLineSquareDashed = IconSquareLineSquareDashed;
|
|
3356
4175
|
exports.IconSquareRounded = IconSquareRounded;
|
|
3357
4176
|
exports.IconSquareTriangleCirclePlus = IconSquareTriangleCirclePlus;
|
|
3358
4177
|
exports.IconSquaresFour = IconSquaresFour;
|
|
4178
|
+
exports.IconSquaresGroup = IconSquaresGroup;
|
|
4179
|
+
exports.IconSquaresMerge = IconSquaresMerge;
|
|
3359
4180
|
exports.IconSquaresThree = IconSquaresThree;
|
|
4181
|
+
exports.IconSquaresTwoOverlap = IconSquaresTwoOverlap;
|
|
4182
|
+
exports.IconSquaresUngroup = IconSquaresUngroup;
|
|
4183
|
+
exports.IconSquaresUnmerge = IconSquaresUnmerge;
|
|
4184
|
+
exports.IconStack = IconStack;
|
|
3360
4185
|
exports.IconStickyNote = IconStickyNote;
|
|
3361
4186
|
exports.IconStopCircle = IconStopCircle;
|
|
3362
4187
|
exports.IconTag = IconTag;
|
|
4188
|
+
exports.IconTextHOne = IconTextHOne;
|
|
4189
|
+
exports.IconTextHThree = IconTextHThree;
|
|
4190
|
+
exports.IconTextHTwo = IconTextHTwo;
|
|
3363
4191
|
exports.IconTextT = IconTextT;
|
|
3364
4192
|
exports.IconThumbsUp = IconThumbsUp;
|
|
3365
4193
|
exports.IconTicket = IconTicket;
|
|
@@ -3372,5 +4200,7 @@ exports.IconTrident = IconTrident;
|
|
|
3372
4200
|
exports.IconUser = IconUser;
|
|
3373
4201
|
exports.IconUserAdd = IconUserAdd;
|
|
3374
4202
|
exports.IconUsers = IconUsers;
|
|
4203
|
+
exports.IconViewCenter = IconViewCenter;
|
|
4204
|
+
exports.IconViewSideLeft = IconViewSideLeft;
|
|
3375
4205
|
exports.IconWallet = IconWallet;
|
|
3376
4206
|
//# sourceMappingURL=main.js.map
|