@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/module.js
CHANGED
|
@@ -23,6 +23,58 @@ const StyledIcon = styled(Primitive.svg, {
|
|
|
23
23
|
}
|
|
24
24
|
});
|
|
25
25
|
|
|
26
|
+
const IconAddLineBottom = forwardRef(
|
|
27
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
28
|
+
StyledIcon,
|
|
29
|
+
{
|
|
30
|
+
...props,
|
|
31
|
+
size,
|
|
32
|
+
viewBox: "0 0 24 24",
|
|
33
|
+
fill: "none",
|
|
34
|
+
ref: forwardRef2
|
|
35
|
+
},
|
|
36
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
37
|
+
clipPath: "url(#a)"
|
|
38
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
39
|
+
stroke: "currentColor",
|
|
40
|
+
strokeLinecap: "round",
|
|
41
|
+
strokeWidth: 2,
|
|
42
|
+
d: "M21 5H3m13 10h-4m0 0H8m4 0v-4m0 4v4"
|
|
43
|
+
})),
|
|
44
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
45
|
+
id: "a"
|
|
46
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
47
|
+
d: "M0 0h24v24H0z"
|
|
48
|
+
})))
|
|
49
|
+
)
|
|
50
|
+
);
|
|
51
|
+
|
|
52
|
+
const IconAddLineRight = forwardRef(
|
|
53
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
54
|
+
StyledIcon,
|
|
55
|
+
{
|
|
56
|
+
...props,
|
|
57
|
+
size,
|
|
58
|
+
viewBox: "0 0 24 24",
|
|
59
|
+
fill: "none",
|
|
60
|
+
ref: forwardRef2
|
|
61
|
+
},
|
|
62
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
63
|
+
clipPath: "url(#a)"
|
|
64
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
65
|
+
stroke: "currentColor",
|
|
66
|
+
strokeLinecap: "round",
|
|
67
|
+
strokeWidth: 2,
|
|
68
|
+
d: "M5 3v18M15 8v4m0 0v4m0-4h-4m4 0h4"
|
|
69
|
+
})),
|
|
70
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
71
|
+
id: "a"
|
|
72
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
73
|
+
d: "M0 0h24v24H0z"
|
|
74
|
+
})))
|
|
75
|
+
)
|
|
76
|
+
);
|
|
77
|
+
|
|
26
78
|
const IconAlignBottom = forwardRef(
|
|
27
79
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
28
80
|
StyledIcon,
|
|
@@ -48,6 +100,56 @@ const IconAlignBottom = forwardRef(
|
|
|
48
100
|
)
|
|
49
101
|
);
|
|
50
102
|
|
|
103
|
+
const IconAlignCenterHorizontal = forwardRef(
|
|
104
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
105
|
+
StyledIcon,
|
|
106
|
+
{
|
|
107
|
+
...props,
|
|
108
|
+
size,
|
|
109
|
+
viewBox: "0 0 24 24",
|
|
110
|
+
fill: "none",
|
|
111
|
+
ref: forwardRef2
|
|
112
|
+
},
|
|
113
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
114
|
+
stroke: "currentColor",
|
|
115
|
+
strokeLinecap: "round",
|
|
116
|
+
strokeLinejoin: "round",
|
|
117
|
+
strokeMiterlimit: 1.414,
|
|
118
|
+
strokeWidth: 2,
|
|
119
|
+
d: "M12 3v18"
|
|
120
|
+
}),
|
|
121
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
122
|
+
fill: "currentColor",
|
|
123
|
+
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"
|
|
124
|
+
})
|
|
125
|
+
)
|
|
126
|
+
);
|
|
127
|
+
|
|
128
|
+
const IconAlignCenterVertical = forwardRef(
|
|
129
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
130
|
+
StyledIcon,
|
|
131
|
+
{
|
|
132
|
+
...props,
|
|
133
|
+
size,
|
|
134
|
+
viewBox: "0 0 24 24",
|
|
135
|
+
fill: "none",
|
|
136
|
+
ref: forwardRef2
|
|
137
|
+
},
|
|
138
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
139
|
+
stroke: "currentColor",
|
|
140
|
+
strokeLinecap: "round",
|
|
141
|
+
strokeLinejoin: "round",
|
|
142
|
+
strokeMiterlimit: 1.414,
|
|
143
|
+
strokeWidth: 2,
|
|
144
|
+
d: "M3 12h18"
|
|
145
|
+
}),
|
|
146
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
147
|
+
fill: "currentColor",
|
|
148
|
+
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"
|
|
149
|
+
})
|
|
150
|
+
)
|
|
151
|
+
);
|
|
152
|
+
|
|
51
153
|
const IconAlignLeft = forwardRef(
|
|
52
154
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
53
155
|
StyledIcon,
|
|
@@ -594,6 +696,33 @@ const IconBell = forwardRef(
|
|
|
594
696
|
)
|
|
595
697
|
);
|
|
596
698
|
|
|
699
|
+
const IconBookmark = forwardRef(
|
|
700
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
701
|
+
StyledIcon,
|
|
702
|
+
{
|
|
703
|
+
...props,
|
|
704
|
+
size,
|
|
705
|
+
viewBox: "0 0 24 24",
|
|
706
|
+
fill: "none",
|
|
707
|
+
ref: forwardRef2
|
|
708
|
+
},
|
|
709
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
710
|
+
clipPath: "url(#a)"
|
|
711
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
712
|
+
stroke: "currentColor",
|
|
713
|
+
strokeLinecap: "round",
|
|
714
|
+
strokeLinejoin: "round",
|
|
715
|
+
strokeWidth: 2,
|
|
716
|
+
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"
|
|
717
|
+
})),
|
|
718
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
719
|
+
id: "a"
|
|
720
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
721
|
+
d: "M0 0h24v24H0z"
|
|
722
|
+
})))
|
|
723
|
+
)
|
|
724
|
+
);
|
|
725
|
+
|
|
597
726
|
const IconBracketsAngleSlash = forwardRef(
|
|
598
727
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
599
728
|
StyledIcon,
|
|
@@ -1358,6 +1487,61 @@ const IconCursor = forwardRef(
|
|
|
1358
1487
|
)
|
|
1359
1488
|
);
|
|
1360
1489
|
|
|
1490
|
+
const IconDistributeHorizontal = forwardRef(
|
|
1491
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1492
|
+
StyledIcon,
|
|
1493
|
+
{
|
|
1494
|
+
...props,
|
|
1495
|
+
size,
|
|
1496
|
+
viewBox: "0 0 24 24",
|
|
1497
|
+
fill: "none",
|
|
1498
|
+
ref: forwardRef2
|
|
1499
|
+
},
|
|
1500
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
1501
|
+
stroke: "currentColor",
|
|
1502
|
+
strokeLinecap: "round",
|
|
1503
|
+
strokeWidth: 2,
|
|
1504
|
+
d: "M4 3v18M20 3v18"
|
|
1505
|
+
}),
|
|
1506
|
+
/* @__PURE__ */ React.createElement("rect", {
|
|
1507
|
+
width: 4,
|
|
1508
|
+
height: 10,
|
|
1509
|
+
x: 10,
|
|
1510
|
+
y: 7,
|
|
1511
|
+
fill: "currentColor",
|
|
1512
|
+
rx: 2
|
|
1513
|
+
})
|
|
1514
|
+
)
|
|
1515
|
+
);
|
|
1516
|
+
|
|
1517
|
+
const IconDistributeVertical = forwardRef(
|
|
1518
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1519
|
+
StyledIcon,
|
|
1520
|
+
{
|
|
1521
|
+
...props,
|
|
1522
|
+
size,
|
|
1523
|
+
viewBox: "0 0 24 24",
|
|
1524
|
+
fill: "none",
|
|
1525
|
+
ref: forwardRef2
|
|
1526
|
+
},
|
|
1527
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
1528
|
+
stroke: "currentColor",
|
|
1529
|
+
strokeLinecap: "round",
|
|
1530
|
+
strokeWidth: 2,
|
|
1531
|
+
d: "M21 4H3m18 16H3"
|
|
1532
|
+
}),
|
|
1533
|
+
/* @__PURE__ */ React.createElement("rect", {
|
|
1534
|
+
width: 4,
|
|
1535
|
+
height: 10,
|
|
1536
|
+
x: 17,
|
|
1537
|
+
y: 10,
|
|
1538
|
+
fill: "currentColor",
|
|
1539
|
+
rx: 2,
|
|
1540
|
+
transform: "rotate(90 17 10)"
|
|
1541
|
+
})
|
|
1542
|
+
)
|
|
1543
|
+
);
|
|
1544
|
+
|
|
1361
1545
|
const IconEnvelope = forwardRef(
|
|
1362
1546
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1363
1547
|
StyledIcon,
|
|
@@ -1550,6 +1734,60 @@ const IconGraduationCap = forwardRef(
|
|
|
1550
1734
|
)
|
|
1551
1735
|
);
|
|
1552
1736
|
|
|
1737
|
+
const IconGridFour = forwardRef(
|
|
1738
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1739
|
+
StyledIcon,
|
|
1740
|
+
{
|
|
1741
|
+
...props,
|
|
1742
|
+
size,
|
|
1743
|
+
viewBox: "0 0 24 24",
|
|
1744
|
+
fill: "none",
|
|
1745
|
+
ref: forwardRef2
|
|
1746
|
+
},
|
|
1747
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
1748
|
+
clipPath: "url(#a)"
|
|
1749
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
1750
|
+
stroke: "currentColor",
|
|
1751
|
+
strokeLinecap: "round",
|
|
1752
|
+
strokeLinejoin: "round",
|
|
1753
|
+
strokeWidth: 2,
|
|
1754
|
+
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"
|
|
1755
|
+
})),
|
|
1756
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
1757
|
+
id: "a"
|
|
1758
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
1759
|
+
d: "M0 0h24v24H0z"
|
|
1760
|
+
})))
|
|
1761
|
+
)
|
|
1762
|
+
);
|
|
1763
|
+
|
|
1764
|
+
const IconGridSix = forwardRef(
|
|
1765
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1766
|
+
StyledIcon,
|
|
1767
|
+
{
|
|
1768
|
+
...props,
|
|
1769
|
+
size,
|
|
1770
|
+
viewBox: "0 0 24 24",
|
|
1771
|
+
fill: "none",
|
|
1772
|
+
ref: forwardRef2
|
|
1773
|
+
},
|
|
1774
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
1775
|
+
clipPath: "url(#a)"
|
|
1776
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
1777
|
+
stroke: "currentColor",
|
|
1778
|
+
strokeLinecap: "round",
|
|
1779
|
+
strokeLinejoin: "round",
|
|
1780
|
+
strokeWidth: 2,
|
|
1781
|
+
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"
|
|
1782
|
+
})),
|
|
1783
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
1784
|
+
id: "a"
|
|
1785
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
1786
|
+
d: "M0 0h24v24H0z"
|
|
1787
|
+
})))
|
|
1788
|
+
)
|
|
1789
|
+
);
|
|
1790
|
+
|
|
1553
1791
|
const IconHandFilled = forwardRef(
|
|
1554
1792
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1555
1793
|
StyledIcon,
|
|
@@ -1750,6 +1988,33 @@ const IconLaptop = forwardRef(
|
|
|
1750
1988
|
)
|
|
1751
1989
|
);
|
|
1752
1990
|
|
|
1991
|
+
const IconLayout = 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 9v12h6M3 9V3h18v6M3 9h6m12 0v12H9M21 9H9m0 0v12"
|
|
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
|
+
|
|
1753
2018
|
const IconLifesaver = forwardRef(
|
|
1754
2019
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1755
2020
|
StyledIcon,
|
|
@@ -1831,7 +2096,7 @@ const IconLineDiagonal = forwardRef(
|
|
|
1831
2096
|
)
|
|
1832
2097
|
);
|
|
1833
2098
|
|
|
1834
|
-
const
|
|
2099
|
+
const IconLinesThreeHorizontalLineVerticalCenter = forwardRef(
|
|
1835
2100
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1836
2101
|
StyledIcon,
|
|
1837
2102
|
{
|
|
@@ -1841,16 +2106,24 @@ const IconLink = forwardRef(
|
|
|
1841
2106
|
fill: "none",
|
|
1842
2107
|
ref: forwardRef2
|
|
1843
2108
|
},
|
|
1844
|
-
/* @__PURE__ */ React.createElement("
|
|
2109
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
2110
|
+
clipPath: "url(#a)"
|
|
2111
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
1845
2112
|
stroke: "currentColor",
|
|
1846
2113
|
strokeLinecap: "round",
|
|
2114
|
+
strokeLinejoin: "round",
|
|
1847
2115
|
strokeWidth: 2,
|
|
1848
|
-
d: "
|
|
1849
|
-
})
|
|
2116
|
+
d: "M4 5h8m8 0h-8m-8 7h16M4 19h8m8 0h-8m0-14v14"
|
|
2117
|
+
})),
|
|
2118
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2119
|
+
id: "a"
|
|
2120
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2121
|
+
d: "M0 0h24v24H0z"
|
|
2122
|
+
})))
|
|
1850
2123
|
)
|
|
1851
2124
|
);
|
|
1852
2125
|
|
|
1853
|
-
const
|
|
2126
|
+
const IconLinesThreeHorizontal = forwardRef(
|
|
1854
2127
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
1855
2128
|
StyledIcon,
|
|
1856
2129
|
{
|
|
@@ -1860,13 +2133,84 @@ const IconLockClosed = forwardRef(
|
|
|
1860
2133
|
fill: "none",
|
|
1861
2134
|
ref: forwardRef2
|
|
1862
2135
|
},
|
|
1863
|
-
/* @__PURE__ */ React.createElement("
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
2136
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
2137
|
+
clipPath: "url(#a)"
|
|
2138
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2139
|
+
stroke: "currentColor",
|
|
2140
|
+
strokeLinecap: "round",
|
|
2141
|
+
strokeWidth: 2,
|
|
2142
|
+
d: "M4 5h16M4 12h16M4 19h16"
|
|
2143
|
+
})),
|
|
2144
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2145
|
+
id: "a"
|
|
2146
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2147
|
+
d: "M0 0h24v24H0z"
|
|
2148
|
+
})))
|
|
2149
|
+
)
|
|
2150
|
+
);
|
|
2151
|
+
|
|
2152
|
+
const IconLinesThreeVertical = forwardRef(
|
|
2153
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2154
|
+
StyledIcon,
|
|
2155
|
+
{
|
|
2156
|
+
...props,
|
|
2157
|
+
size,
|
|
2158
|
+
viewBox: "0 0 24 24",
|
|
2159
|
+
fill: "none",
|
|
2160
|
+
ref: forwardRef2
|
|
2161
|
+
},
|
|
2162
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
2163
|
+
clipPath: "url(#a)"
|
|
2164
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2165
|
+
stroke: "currentColor",
|
|
2166
|
+
strokeLinecap: "round",
|
|
2167
|
+
strokeWidth: 2,
|
|
2168
|
+
d: "M20 4v16M12 4v16M4 4v16"
|
|
2169
|
+
})),
|
|
2170
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2171
|
+
id: "a"
|
|
2172
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2173
|
+
d: "M0 0h24v24H0z"
|
|
2174
|
+
})))
|
|
2175
|
+
)
|
|
2176
|
+
);
|
|
2177
|
+
|
|
2178
|
+
const IconLink = forwardRef(
|
|
2179
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2180
|
+
StyledIcon,
|
|
2181
|
+
{
|
|
2182
|
+
...props,
|
|
2183
|
+
size,
|
|
2184
|
+
viewBox: "0 0 24 24",
|
|
2185
|
+
fill: "none",
|
|
2186
|
+
ref: forwardRef2
|
|
2187
|
+
},
|
|
2188
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
2189
|
+
stroke: "currentColor",
|
|
2190
|
+
strokeLinecap: "round",
|
|
2191
|
+
strokeWidth: 2,
|
|
2192
|
+
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"
|
|
2193
|
+
})
|
|
2194
|
+
)
|
|
2195
|
+
);
|
|
2196
|
+
|
|
2197
|
+
const IconLockClosed = forwardRef(
|
|
2198
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2199
|
+
StyledIcon,
|
|
2200
|
+
{
|
|
2201
|
+
...props,
|
|
2202
|
+
size,
|
|
2203
|
+
viewBox: "0 0 24 24",
|
|
2204
|
+
fill: "none",
|
|
2205
|
+
ref: forwardRef2
|
|
2206
|
+
},
|
|
2207
|
+
/* @__PURE__ */ React.createElement("circle", {
|
|
2208
|
+
cx: 12,
|
|
2209
|
+
cy: 16,
|
|
2210
|
+
r: 1,
|
|
2211
|
+
fill: "currentColor"
|
|
2212
|
+
}),
|
|
2213
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
1870
2214
|
stroke: "currentColor",
|
|
1871
2215
|
strokeLinecap: "round",
|
|
1872
2216
|
strokeWidth: 2,
|
|
@@ -2293,6 +2637,114 @@ const IconQuestionMarkCircle = forwardRef(
|
|
|
2293
2637
|
)
|
|
2294
2638
|
);
|
|
2295
2639
|
|
|
2640
|
+
const IconRectanglesThreeAligned = forwardRef(
|
|
2641
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2642
|
+
StyledIcon,
|
|
2643
|
+
{
|
|
2644
|
+
...props,
|
|
2645
|
+
size,
|
|
2646
|
+
viewBox: "0 0 24 24",
|
|
2647
|
+
fill: "none",
|
|
2648
|
+
ref: forwardRef2
|
|
2649
|
+
},
|
|
2650
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
2651
|
+
stroke: "currentColor",
|
|
2652
|
+
strokeLinecap: "round",
|
|
2653
|
+
strokeLinejoin: "round",
|
|
2654
|
+
strokeWidth: 2,
|
|
2655
|
+
clipPath: "url(#a)"
|
|
2656
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2657
|
+
d: "M11 4H3v8h8V4Zm6.063 12h-14v5h14v-5ZM19 4h-4v4h4V4Z"
|
|
2658
|
+
})),
|
|
2659
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2660
|
+
id: "a"
|
|
2661
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2662
|
+
d: "M0 0h24v24H0z"
|
|
2663
|
+
})))
|
|
2664
|
+
)
|
|
2665
|
+
);
|
|
2666
|
+
|
|
2667
|
+
const IconRectanglesThreeFree = forwardRef(
|
|
2668
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2669
|
+
StyledIcon,
|
|
2670
|
+
{
|
|
2671
|
+
...props,
|
|
2672
|
+
size,
|
|
2673
|
+
viewBox: "0 0 24 24",
|
|
2674
|
+
fill: "none",
|
|
2675
|
+
ref: forwardRef2
|
|
2676
|
+
},
|
|
2677
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
2678
|
+
stroke: "currentColor",
|
|
2679
|
+
strokeLinecap: "round",
|
|
2680
|
+
strokeLinejoin: "round",
|
|
2681
|
+
strokeWidth: 2,
|
|
2682
|
+
clipPath: "url(#a)"
|
|
2683
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2684
|
+
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"
|
|
2685
|
+
})),
|
|
2686
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2687
|
+
id: "a"
|
|
2688
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2689
|
+
d: "M0 0h24v24H0z"
|
|
2690
|
+
})))
|
|
2691
|
+
)
|
|
2692
|
+
);
|
|
2693
|
+
|
|
2694
|
+
const IconRectanglesThreeOverlap = forwardRef(
|
|
2695
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2696
|
+
StyledIcon,
|
|
2697
|
+
{
|
|
2698
|
+
...props,
|
|
2699
|
+
size,
|
|
2700
|
+
viewBox: "0 0 24 24",
|
|
2701
|
+
fill: "none",
|
|
2702
|
+
ref: forwardRef2
|
|
2703
|
+
},
|
|
2704
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
2705
|
+
clipPath: "url(#a)"
|
|
2706
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2707
|
+
stroke: "currentColor",
|
|
2708
|
+
strokeLinecap: "round",
|
|
2709
|
+
strokeLinejoin: "round",
|
|
2710
|
+
strokeWidth: 2,
|
|
2711
|
+
d: "M8 11H4v10h9v-4m-5-6h5v6m-5-6V7h4m1 10h4v-4m-5-6h5v6m-5-6V3h9v10h-4"
|
|
2712
|
+
})),
|
|
2713
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2714
|
+
id: "a"
|
|
2715
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2716
|
+
d: "M0 0h24v24H0z"
|
|
2717
|
+
})))
|
|
2718
|
+
)
|
|
2719
|
+
);
|
|
2720
|
+
|
|
2721
|
+
const IconRectanglesTwoLine = forwardRef(
|
|
2722
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2723
|
+
StyledIcon,
|
|
2724
|
+
{
|
|
2725
|
+
...props,
|
|
2726
|
+
size,
|
|
2727
|
+
viewBox: "0 0 24 24",
|
|
2728
|
+
fill: "none",
|
|
2729
|
+
ref: forwardRef2
|
|
2730
|
+
},
|
|
2731
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
2732
|
+
clipPath: "url(#a)"
|
|
2733
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2734
|
+
stroke: "currentColor",
|
|
2735
|
+
strokeLinecap: "round",
|
|
2736
|
+
strokeLinejoin: "round",
|
|
2737
|
+
strokeWidth: 2,
|
|
2738
|
+
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"
|
|
2739
|
+
})),
|
|
2740
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
2741
|
+
id: "a"
|
|
2742
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
2743
|
+
d: "M0 0h24v24H0z"
|
|
2744
|
+
})))
|
|
2745
|
+
)
|
|
2746
|
+
);
|
|
2747
|
+
|
|
2296
2748
|
const IconRhombus = forwardRef(
|
|
2297
2749
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2298
2750
|
StyledIcon,
|
|
@@ -2667,6 +3119,33 @@ const IconSpeakerHigh = forwardRef(
|
|
|
2667
3119
|
)
|
|
2668
3120
|
);
|
|
2669
3121
|
|
|
3122
|
+
const IconSplitVertical = forwardRef(
|
|
3123
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
3124
|
+
StyledIcon,
|
|
3125
|
+
{
|
|
3126
|
+
...props,
|
|
3127
|
+
size,
|
|
3128
|
+
viewBox: "0 0 24 24",
|
|
3129
|
+
fill: "none",
|
|
3130
|
+
ref: forwardRef2
|
|
3131
|
+
},
|
|
3132
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
3133
|
+
clipPath: "url(#a)"
|
|
3134
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3135
|
+
stroke: "currentColor",
|
|
3136
|
+
strokeLinecap: "round",
|
|
3137
|
+
strokeLinejoin: "round",
|
|
3138
|
+
strokeWidth: 2,
|
|
3139
|
+
d: "M5 6.5V4h14v2.5M2 12h20M5 17.5V20h14v-2.5"
|
|
3140
|
+
})),
|
|
3141
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
3142
|
+
id: "a"
|
|
3143
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3144
|
+
d: "M0 0h24v24H0z"
|
|
3145
|
+
})))
|
|
3146
|
+
)
|
|
3147
|
+
);
|
|
3148
|
+
|
|
2670
3149
|
const IconSquareBracketsAngleSlash = forwardRef(
|
|
2671
3150
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2672
3151
|
StyledIcon,
|
|
@@ -2716,6 +3195,33 @@ const IconSquareCirclesTwo = forwardRef(
|
|
|
2716
3195
|
)
|
|
2717
3196
|
);
|
|
2718
3197
|
|
|
3198
|
+
const IconSquareLineSquareDashed = forwardRef(
|
|
3199
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
3200
|
+
StyledIcon,
|
|
3201
|
+
{
|
|
3202
|
+
...props,
|
|
3203
|
+
size,
|
|
3204
|
+
viewBox: "0 0 24 24",
|
|
3205
|
+
fill: "none",
|
|
3206
|
+
ref: forwardRef2
|
|
3207
|
+
},
|
|
3208
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
3209
|
+
clipPath: "url(#a)"
|
|
3210
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3211
|
+
stroke: "currentColor",
|
|
3212
|
+
strokeLinecap: "round",
|
|
3213
|
+
strokeLinejoin: "round",
|
|
3214
|
+
strokeWidth: 2,
|
|
3215
|
+
d: "M18 3h3v3m0 4v4m0 4v3h-3m-4 0h-4m-4 0H3v-3M3 3h11v11H3V3Z"
|
|
3216
|
+
})),
|
|
3217
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
3218
|
+
id: "a"
|
|
3219
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3220
|
+
d: "M0 0h24v24H0z"
|
|
3221
|
+
})))
|
|
3222
|
+
)
|
|
3223
|
+
);
|
|
3224
|
+
|
|
2719
3225
|
const IconSquareRounded = forwardRef(
|
|
2720
3226
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2721
3227
|
StyledIcon,
|
|
@@ -2818,6 +3324,58 @@ const IconSquaresFour = forwardRef(
|
|
|
2818
3324
|
)
|
|
2819
3325
|
);
|
|
2820
3326
|
|
|
3327
|
+
const IconSquaresGroup = forwardRef(
|
|
3328
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
3329
|
+
StyledIcon,
|
|
3330
|
+
{
|
|
3331
|
+
...props,
|
|
3332
|
+
size,
|
|
3333
|
+
viewBox: "0 0 24 24",
|
|
3334
|
+
fill: "none",
|
|
3335
|
+
ref: forwardRef2
|
|
3336
|
+
},
|
|
3337
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
3338
|
+
stroke: "currentColor",
|
|
3339
|
+
strokeLinecap: "round",
|
|
3340
|
+
strokeLinejoin: "round",
|
|
3341
|
+
strokeWidth: 2,
|
|
3342
|
+
d: "M20 4H4v16h16V4Z"
|
|
3343
|
+
}),
|
|
3344
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
3345
|
+
fill: "currentColor",
|
|
3346
|
+
d: "M2 2h3v3H2V2Zm17 0h3v3h-3V2Zm0 17h3v3h-3v-3ZM2 19h3v3H2v-3Zm9-12h6v6h-6V7Z"
|
|
3347
|
+
}),
|
|
3348
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
3349
|
+
fill: "currentColor",
|
|
3350
|
+
d: "M7 11h3v3h3v3H7v-6Z"
|
|
3351
|
+
})
|
|
3352
|
+
)
|
|
3353
|
+
);
|
|
3354
|
+
|
|
3355
|
+
const IconSquaresMerge = forwardRef(
|
|
3356
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
3357
|
+
StyledIcon,
|
|
3358
|
+
{
|
|
3359
|
+
...props,
|
|
3360
|
+
size,
|
|
3361
|
+
viewBox: "0 0 24 24",
|
|
3362
|
+
fill: "none",
|
|
3363
|
+
ref: forwardRef2
|
|
3364
|
+
},
|
|
3365
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
3366
|
+
clipPath: "url(#a)"
|
|
3367
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3368
|
+
fill: "currentColor",
|
|
3369
|
+
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"
|
|
3370
|
+
})),
|
|
3371
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
3372
|
+
id: "a"
|
|
3373
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3374
|
+
d: "M0 0h24v24H0z"
|
|
3375
|
+
})))
|
|
3376
|
+
)
|
|
3377
|
+
);
|
|
3378
|
+
|
|
2821
3379
|
const IconSquaresThree = forwardRef(
|
|
2822
3380
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2823
3381
|
StyledIcon,
|
|
@@ -2844,6 +3402,111 @@ const IconSquaresThree = forwardRef(
|
|
|
2844
3402
|
)
|
|
2845
3403
|
);
|
|
2846
3404
|
|
|
3405
|
+
const IconSquaresTwoOverlap = forwardRef(
|
|
3406
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
3407
|
+
StyledIcon,
|
|
3408
|
+
{
|
|
3409
|
+
...props,
|
|
3410
|
+
size,
|
|
3411
|
+
viewBox: "0 0 24 24",
|
|
3412
|
+
fill: "none",
|
|
3413
|
+
ref: forwardRef2
|
|
3414
|
+
},
|
|
3415
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
3416
|
+
clipPath: "url(#a)"
|
|
3417
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3418
|
+
stroke: "currentColor",
|
|
3419
|
+
strokeLinecap: "round",
|
|
3420
|
+
strokeLinejoin: "round",
|
|
3421
|
+
strokeWidth: 2,
|
|
3422
|
+
d: "M9 5V3h12v12h-2M3 9h12v12H3V9Z"
|
|
3423
|
+
})),
|
|
3424
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
3425
|
+
id: "a"
|
|
3426
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3427
|
+
d: "M0 0h24v24H0z"
|
|
3428
|
+
})))
|
|
3429
|
+
)
|
|
3430
|
+
);
|
|
3431
|
+
|
|
3432
|
+
const IconSquaresUngroup = forwardRef(
|
|
3433
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
3434
|
+
StyledIcon,
|
|
3435
|
+
{
|
|
3436
|
+
...props,
|
|
3437
|
+
size,
|
|
3438
|
+
viewBox: "0 0 24 24",
|
|
3439
|
+
fill: "none",
|
|
3440
|
+
ref: forwardRef2
|
|
3441
|
+
},
|
|
3442
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
3443
|
+
stroke: "currentColor",
|
|
3444
|
+
strokeLinecap: "round",
|
|
3445
|
+
strokeLinejoin: "round",
|
|
3446
|
+
strokeWidth: 2,
|
|
3447
|
+
d: "M10 10v4h4m-4-4V4h10v10h-6m-4-4H4v10h10v-6"
|
|
3448
|
+
}),
|
|
3449
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
3450
|
+
fill: "currentColor",
|
|
3451
|
+
d: "M8 2h3v3H8V2Zm11 0h3v3h-3V2Zm0 11h3v3h-3v-3ZM8 13h3v3H8v-3ZM2 8h3v3H2V8Zm0 11h3v3H2v-3Zm11 0h3v3h-3v-3Z"
|
|
3452
|
+
})
|
|
3453
|
+
)
|
|
3454
|
+
);
|
|
3455
|
+
|
|
3456
|
+
const IconSquaresUnmerge = forwardRef(
|
|
3457
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
3458
|
+
StyledIcon,
|
|
3459
|
+
{
|
|
3460
|
+
...props,
|
|
3461
|
+
size,
|
|
3462
|
+
viewBox: "0 0 24 24",
|
|
3463
|
+
fill: "none",
|
|
3464
|
+
ref: forwardRef2
|
|
3465
|
+
},
|
|
3466
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
3467
|
+
clipPath: "url(#a)"
|
|
3468
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3469
|
+
stroke: "currentColor",
|
|
3470
|
+
strokeLinecap: "round",
|
|
3471
|
+
strokeLinejoin: "round",
|
|
3472
|
+
strokeWidth: 2,
|
|
3473
|
+
d: "M9 3h12v12H9V3Zm6 6H3v12h12V9Z"
|
|
3474
|
+
})),
|
|
3475
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
3476
|
+
id: "a"
|
|
3477
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3478
|
+
d: "M0 0h24v24H0z"
|
|
3479
|
+
})))
|
|
3480
|
+
)
|
|
3481
|
+
);
|
|
3482
|
+
|
|
3483
|
+
const IconStack = forwardRef(
|
|
3484
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
3485
|
+
StyledIcon,
|
|
3486
|
+
{
|
|
3487
|
+
...props,
|
|
3488
|
+
size,
|
|
3489
|
+
viewBox: "0 0 24 24",
|
|
3490
|
+
fill: "none",
|
|
3491
|
+
ref: forwardRef2
|
|
3492
|
+
},
|
|
3493
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
3494
|
+
clipPath: "url(#a)"
|
|
3495
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3496
|
+
stroke: "currentColor",
|
|
3497
|
+
strokeLinecap: "round",
|
|
3498
|
+
strokeLinejoin: "round",
|
|
3499
|
+
strokeWidth: 2,
|
|
3500
|
+
d: "m18 14 4 1.5L12 20 2 15.5 6 14m6-10 10 4.5L12 13 2 8.5 12 4Z"
|
|
3501
|
+
})),
|
|
3502
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
3503
|
+
id: "a"
|
|
3504
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3505
|
+
d: "M0 0h24v24H0z"
|
|
3506
|
+
})))
|
|
3507
|
+
)
|
|
3508
|
+
);
|
|
3509
|
+
|
|
2847
3510
|
const IconStickyNote = forwardRef(
|
|
2848
3511
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2849
3512
|
StyledIcon,
|
|
@@ -2921,6 +3584,87 @@ const IconTag = forwardRef(
|
|
|
2921
3584
|
)
|
|
2922
3585
|
);
|
|
2923
3586
|
|
|
3587
|
+
const IconTextHOne = forwardRef(
|
|
3588
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
3589
|
+
StyledIcon,
|
|
3590
|
+
{
|
|
3591
|
+
...props,
|
|
3592
|
+
size,
|
|
3593
|
+
viewBox: "0 0 24 24",
|
|
3594
|
+
fill: "none",
|
|
3595
|
+
ref: forwardRef2
|
|
3596
|
+
},
|
|
3597
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
3598
|
+
clipPath: "url(#a)"
|
|
3599
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3600
|
+
stroke: "currentColor",
|
|
3601
|
+
strokeLinecap: "round",
|
|
3602
|
+
strokeLinejoin: "round",
|
|
3603
|
+
strokeWidth: 2,
|
|
3604
|
+
d: "M5 6v6m0 6v-6m0 0h7m0 0V6m0 6v6m5-12h3v12"
|
|
3605
|
+
})),
|
|
3606
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
3607
|
+
id: "a"
|
|
3608
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3609
|
+
d: "M0 0h24v24H0z"
|
|
3610
|
+
})))
|
|
3611
|
+
)
|
|
3612
|
+
);
|
|
3613
|
+
|
|
3614
|
+
const IconTextHThree = forwardRef(
|
|
3615
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
3616
|
+
StyledIcon,
|
|
3617
|
+
{
|
|
3618
|
+
...props,
|
|
3619
|
+
size,
|
|
3620
|
+
viewBox: "0 0 24 24",
|
|
3621
|
+
fill: "none",
|
|
3622
|
+
ref: forwardRef2
|
|
3623
|
+
},
|
|
3624
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
3625
|
+
clipPath: "url(#a)"
|
|
3626
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3627
|
+
stroke: "currentColor",
|
|
3628
|
+
strokeLinecap: "round",
|
|
3629
|
+
strokeLinejoin: "round",
|
|
3630
|
+
strokeWidth: 2,
|
|
3631
|
+
d: "M4 6v6m0 6v-6m0 0h7m0 0V6m0 6v6m4-12h5v6m-5 0h5m0 0v6h-5"
|
|
3632
|
+
})),
|
|
3633
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
3634
|
+
id: "a"
|
|
3635
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3636
|
+
d: "M0 0h24v24H0z"
|
|
3637
|
+
})))
|
|
3638
|
+
)
|
|
3639
|
+
);
|
|
3640
|
+
|
|
3641
|
+
const IconTextHTwo = forwardRef(
|
|
3642
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
3643
|
+
StyledIcon,
|
|
3644
|
+
{
|
|
3645
|
+
...props,
|
|
3646
|
+
size,
|
|
3647
|
+
viewBox: "0 0 24 24",
|
|
3648
|
+
fill: "none",
|
|
3649
|
+
ref: forwardRef2
|
|
3650
|
+
},
|
|
3651
|
+
/* @__PURE__ */ React.createElement("g", {
|
|
3652
|
+
clipPath: "url(#a)"
|
|
3653
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3654
|
+
stroke: "currentColor",
|
|
3655
|
+
strokeLinecap: "round",
|
|
3656
|
+
strokeLinejoin: "round",
|
|
3657
|
+
strokeWidth: 2,
|
|
3658
|
+
d: "M4 6v6m0 6v-6m0 0h7m0 0V6m0 6v6m4-12h5v6h-5v6h5"
|
|
3659
|
+
})),
|
|
3660
|
+
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
3661
|
+
id: "a"
|
|
3662
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
3663
|
+
d: "M0 0h24v24H0z"
|
|
3664
|
+
})))
|
|
3665
|
+
)
|
|
3666
|
+
);
|
|
3667
|
+
|
|
2924
3668
|
const IconTextT = forwardRef(
|
|
2925
3669
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
2926
3670
|
StyledIcon,
|
|
@@ -3206,6 +3950,62 @@ const IconUsers = forwardRef(
|
|
|
3206
3950
|
)
|
|
3207
3951
|
);
|
|
3208
3952
|
|
|
3953
|
+
const IconViewCenter = forwardRef(
|
|
3954
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
3955
|
+
StyledIcon,
|
|
3956
|
+
{
|
|
3957
|
+
...props,
|
|
3958
|
+
size,
|
|
3959
|
+
viewBox: "0 0 24 24",
|
|
3960
|
+
fill: "none",
|
|
3961
|
+
ref: forwardRef2
|
|
3962
|
+
},
|
|
3963
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
3964
|
+
stroke: "currentColor",
|
|
3965
|
+
strokeLinecap: "round",
|
|
3966
|
+
strokeLinejoin: "round",
|
|
3967
|
+
strokeWidth: 2,
|
|
3968
|
+
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"
|
|
3969
|
+
}),
|
|
3970
|
+
/* @__PURE__ */ React.createElement("rect", {
|
|
3971
|
+
width: 10,
|
|
3972
|
+
height: 8,
|
|
3973
|
+
x: 7,
|
|
3974
|
+
y: 8,
|
|
3975
|
+
fill: "currentColor",
|
|
3976
|
+
rx: 1
|
|
3977
|
+
})
|
|
3978
|
+
)
|
|
3979
|
+
);
|
|
3980
|
+
|
|
3981
|
+
const IconViewSideLeft = forwardRef(
|
|
3982
|
+
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
3983
|
+
StyledIcon,
|
|
3984
|
+
{
|
|
3985
|
+
...props,
|
|
3986
|
+
size,
|
|
3987
|
+
viewBox: "0 0 24 24",
|
|
3988
|
+
fill: "none",
|
|
3989
|
+
ref: forwardRef2
|
|
3990
|
+
},
|
|
3991
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
3992
|
+
stroke: "currentColor",
|
|
3993
|
+
strokeLinecap: "round",
|
|
3994
|
+
strokeLinejoin: "round",
|
|
3995
|
+
strokeWidth: 2,
|
|
3996
|
+
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"
|
|
3997
|
+
}),
|
|
3998
|
+
/* @__PURE__ */ React.createElement("rect", {
|
|
3999
|
+
width: 6,
|
|
4000
|
+
height: 10,
|
|
4001
|
+
x: 6,
|
|
4002
|
+
y: 7,
|
|
4003
|
+
fill: "currentColor",
|
|
4004
|
+
rx: 1
|
|
4005
|
+
})
|
|
4006
|
+
)
|
|
4007
|
+
);
|
|
4008
|
+
|
|
3209
4009
|
const IconWallet = forwardRef(
|
|
3210
4010
|
({ size = "medium", ...props }, forwardRef2) => createElement(
|
|
3211
4011
|
StyledIcon,
|
|
@@ -3229,5 +4029,5 @@ const IconWallet = forwardRef(
|
|
|
3229
4029
|
)
|
|
3230
4030
|
);
|
|
3231
4031
|
|
|
3232
|
-
export { IconAlignBottom, IconAlignLeft, IconAlignRight, IconAlignTop, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowFatRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArticle, IconBarThree, IconBell, IconBellSlash, IconBellTilt, 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, IconEnvelope, IconExclamationPointCircle, IconFactory, IconFactoryHouse, IconFunnel, IconGauge, IconGlobe, IconGraduationCap, IconHand, IconHandFilled, IconHouse, IconImage, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLifesaver, IconLightning, IconLineDiagonal, IconLink, IconLockClosed, IconLockOpen, IconMagnet, IconMagnifyingGlass, IconMap, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMouse, IconParallelogram, IconPauseCircle, IconPdf, IconPlaceholder, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPushPin, IconQuestionMarkCircle, IconRhombus, IconScrollbarXy, IconShapes, IconShieldCheck, IconShieldLock, IconSidebarClosed, IconSidebarOpen, IconSlidersX, IconSlidersY, IconSocialFacebook, IconSocialInstagram, IconSocialLinkedin, IconSocialTwitter, IconSocialYoutube, IconSpeakerCross, IconSpeakerHigh, IconSquare, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareRounded, IconSquareTriangleCirclePlus, IconSquaresFour, IconSquaresThree, IconStickyNote, IconStopCircle, IconTag, IconTextT, IconThumbsUp, IconTicket, IconTimer, IconTrackpad, IconTrash, IconTrashSimple, IconTriangle, IconTrident, IconUser, IconUserAdd, IconUsers, IconWallet };
|
|
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 };
|
|
3233
4033
|
//# sourceMappingURL=module.js.map
|