@dsgngo/common-icons 2.0.8 → 2.2.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/icons-ui-arrows.js +13 -0
- package/dist/icons-ui-brands.js +4 -0
- package/dist/icons-ui-commerce.js +27 -0
- package/dist/icons-ui-communication.js +6 -0
- package/dist/icons-ui-design.js +17 -0
- package/dist/icons-ui-development.js +6 -0
- package/dist/icons-ui-games.js +1 -0
- package/dist/icons-ui-health-wellness.js +2 -0
- package/dist/icons-ui-maps-travel.js +6 -0
- package/dist/icons-ui-math-finance.js +9 -0
- package/dist/icons-ui-media.js +33 -0
- package/dist/icons-ui-office-editing.js +60 -0
- package/dist/icons-ui-people.js +6 -0
- package/dist/icons-ui-security-warnings.js +8 -0
- package/dist/icons-ui-system-devices.js +125 -6
- package/dist/icons-ui-time.js +72 -0
- package/dist/icons-ui-weather-nature.js +6 -0
- package/package.json +1 -1
package/dist/icons-ui-arrows.js
CHANGED
|
@@ -21,6 +21,7 @@ function IconCaretUp(props) {
|
|
|
21
21
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
22
22
|
className: "icon fill icon-caret-up ".concat(props.className ? props.className : ''),
|
|
23
23
|
onClick: props.onClick ? props.onClick : undefined,
|
|
24
|
+
style: props.style ? props.style : undefined,
|
|
24
25
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
25
26
|
viewBox: "0 0 32 32",
|
|
26
27
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -33,6 +34,7 @@ function IconCaretDown(props) {
|
|
|
33
34
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
34
35
|
className: "icon fill icon-caret-down ".concat(props.className ? props.className : ''),
|
|
35
36
|
onClick: props.onClick ? props.onClick : undefined,
|
|
37
|
+
style: props.style ? props.style : undefined,
|
|
36
38
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
37
39
|
viewBox: "0 0 32 32",
|
|
38
40
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -45,6 +47,7 @@ function IconCaretLeft(props) {
|
|
|
45
47
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
46
48
|
className: "icon fill icon-caret-left ".concat(props.className ? props.className : ''),
|
|
47
49
|
onClick: props.onClick ? props.onClick : undefined,
|
|
50
|
+
style: props.style ? props.style : undefined,
|
|
48
51
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
49
52
|
viewBox: "0 0 32 32",
|
|
50
53
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -57,6 +60,7 @@ function IconCaretRight(props) {
|
|
|
57
60
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
58
61
|
className: "icon fill icon-caret-right ".concat(props.className ? props.className : ''),
|
|
59
62
|
onClick: props.onClick ? props.onClick : undefined,
|
|
63
|
+
style: props.style ? props.style : undefined,
|
|
60
64
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
61
65
|
viewBox: "0 0 32 32",
|
|
62
66
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -69,6 +73,7 @@ function IconArrowLeft(props) {
|
|
|
69
73
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
70
74
|
className: "icon fill icon-arrow-left ".concat(props.className ? props.className : ''),
|
|
71
75
|
onClick: props.onClick ? props.onClick : undefined,
|
|
76
|
+
style: props.style ? props.style : undefined,
|
|
72
77
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
73
78
|
viewBox: "0 0 32 32",
|
|
74
79
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -81,6 +86,7 @@ function IconArrowRight(props) {
|
|
|
81
86
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
82
87
|
className: "icon fill icon-arrow-right ".concat(props.className ? props.className : ''),
|
|
83
88
|
onClick: props.onClick ? props.onClick : undefined,
|
|
89
|
+
style: props.style ? props.style : undefined,
|
|
84
90
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
85
91
|
viewBox: "0 0 32 32",
|
|
86
92
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -93,6 +99,7 @@ function IconArrowsLeftRight(props) {
|
|
|
93
99
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
94
100
|
className: "icon fill icon-arrows-left-right ".concat(props.className ? props.className : ''),
|
|
95
101
|
onClick: props.onClick ? props.onClick : undefined,
|
|
102
|
+
style: props.style ? props.style : undefined,
|
|
96
103
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
97
104
|
viewBox: "0 0 32 32",
|
|
98
105
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -105,6 +112,7 @@ function IconArrowBendUpLeft(props) {
|
|
|
105
112
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
106
113
|
className: "icon fill icon-arrow-bend-up-left ".concat(props.className ? props.className : ''),
|
|
107
114
|
onClick: props.onClick ? props.onClick : undefined,
|
|
115
|
+
style: props.style ? props.style : undefined,
|
|
108
116
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
109
117
|
viewBox: "0 0 32 32",
|
|
110
118
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -117,6 +125,7 @@ function IconArrowBendLeftUp(props) {
|
|
|
117
125
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
118
126
|
className: "icon fill icon-arrow-bend-left-up ".concat(props.className ? props.className : ''),
|
|
119
127
|
onClick: props.onClick ? props.onClick : undefined,
|
|
128
|
+
style: props.style ? props.style : undefined,
|
|
120
129
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
121
130
|
viewBox: "0 0 32 32",
|
|
122
131
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -129,6 +138,7 @@ function IconArrowClockwise(props) {
|
|
|
129
138
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
130
139
|
className: "icon fill icon-arrow-clockwise ".concat(props.className ? props.className : ''),
|
|
131
140
|
onClick: props.onClick ? props.onClick : undefined,
|
|
141
|
+
style: props.style ? props.style : undefined,
|
|
132
142
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
133
143
|
viewBox: "0 0 32 32",
|
|
134
144
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -141,6 +151,7 @@ function IconArrowsOutLineHorizontal(props) {
|
|
|
141
151
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
142
152
|
className: "icon fill icon-arrows-out-line-horizontal ".concat(props.className ? props.className : ''),
|
|
143
153
|
onClick: props.onClick ? props.onClick : undefined,
|
|
154
|
+
style: props.style ? props.style : undefined,
|
|
144
155
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
145
156
|
viewBox: "0 0 32 32",
|
|
146
157
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -153,6 +164,7 @@ function IconArrowElbowDownLeft(props) {
|
|
|
153
164
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
154
165
|
className: "icon fill icon-arrow-elbow-down-left ".concat(props.className ? props.className : ''),
|
|
155
166
|
onClick: props.onClick ? props.onClick : undefined,
|
|
167
|
+
style: props.style ? props.style : undefined,
|
|
156
168
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
157
169
|
viewBox: "0 0 32 32",
|
|
158
170
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -165,6 +177,7 @@ function IconArrowUDownLeft(props) {
|
|
|
165
177
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
166
178
|
className: "icon fill icon-arrow-u-down-left ".concat(props.className ? props.className : ''),
|
|
167
179
|
onClick: props.onClick ? props.onClick : undefined,
|
|
180
|
+
style: props.style ? props.style : undefined,
|
|
168
181
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
169
182
|
viewBox: "0 0 32 32",
|
|
170
183
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
package/dist/icons-ui-brands.js
CHANGED
|
@@ -12,6 +12,7 @@ function IconYoutubeLogo(props) {
|
|
|
12
12
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
13
13
|
className: "icon fill icon-youtube-logo ".concat(props.className ? props.className : ''),
|
|
14
14
|
onClick: props.onClick ? props.onClick : undefined,
|
|
15
|
+
style: props.style ? props.style : undefined,
|
|
15
16
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
16
17
|
viewBox: "0 0 32 32",
|
|
17
18
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -24,6 +25,7 @@ function IconBehanceLogo(props) {
|
|
|
24
25
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
25
26
|
className: "icon fill icon-behance-logo ".concat(props.className ? props.className : ''),
|
|
26
27
|
onClick: props.onClick ? props.onClick : undefined,
|
|
28
|
+
style: props.style ? props.style : undefined,
|
|
27
29
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
28
30
|
viewBox: "0 0 32 32",
|
|
29
31
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -36,6 +38,7 @@ function IconTelegramLogo(props) {
|
|
|
36
38
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
37
39
|
className: "icon fill icon-telegram-logo ".concat(props.className ? props.className : ''),
|
|
38
40
|
onClick: props.onClick ? props.onClick : undefined,
|
|
41
|
+
style: props.style ? props.style : undefined,
|
|
39
42
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
40
43
|
viewBox: "0 0 32 32",
|
|
41
44
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -48,6 +51,7 @@ function IconInstagramLogo(props) {
|
|
|
48
51
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
49
52
|
className: "icon fill icon-instagram-logo ".concat(props.className ? props.className : ''),
|
|
50
53
|
onClick: props.onClick ? props.onClick : undefined,
|
|
54
|
+
style: props.style ? props.style : undefined,
|
|
51
55
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
52
56
|
viewBox: "0 0 32 32",
|
|
53
57
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -35,6 +35,7 @@ function IconTag(props) {
|
|
|
35
35
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
36
36
|
className: "icon fill icon-tag ".concat(props.className ? props.className : ''),
|
|
37
37
|
onClick: props.onClick ? props.onClick : undefined,
|
|
38
|
+
style: props.style ? props.style : undefined,
|
|
38
39
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
39
40
|
viewBox: "0 0 32 32",
|
|
40
41
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -47,6 +48,7 @@ function IconBuildings(props) {
|
|
|
47
48
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
48
49
|
className: "icon fill icon-buildings ".concat(props.className ? props.className : ''),
|
|
49
50
|
onClick: props.onClick ? props.onClick : undefined,
|
|
51
|
+
style: props.style ? props.style : undefined,
|
|
50
52
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
51
53
|
viewBox: "0 0 32 32",
|
|
52
54
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -59,6 +61,7 @@ function IconBarcode(props) {
|
|
|
59
61
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
60
62
|
className: "icon fill icon-barcode ".concat(props.className ? props.className : ''),
|
|
61
63
|
onClick: props.onClick ? props.onClick : undefined,
|
|
64
|
+
style: props.style ? props.style : undefined,
|
|
62
65
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
63
66
|
viewBox: "0 0 32 32",
|
|
64
67
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -71,6 +74,7 @@ function IconBag(props) {
|
|
|
71
74
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
72
75
|
className: "icon fill icon-bag ".concat(props.className ? props.className : ''),
|
|
73
76
|
onClick: props.onClick ? props.onClick : undefined,
|
|
77
|
+
style: props.style ? props.style : undefined,
|
|
74
78
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
75
79
|
viewBox: "0 0 32 32",
|
|
76
80
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -83,6 +87,7 @@ function IconTote(props) {
|
|
|
83
87
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
84
88
|
className: "icon fill icon-tote ".concat(props.className ? props.className : ''),
|
|
85
89
|
onClick: props.onClick ? props.onClick : undefined,
|
|
90
|
+
style: props.style ? props.style : undefined,
|
|
86
91
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
87
92
|
viewBox: "0 0 32 32",
|
|
88
93
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -95,6 +100,7 @@ function IconCoins(props) {
|
|
|
95
100
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
96
101
|
className: "icon fill icon-coins ".concat(props.className ? props.className : ''),
|
|
97
102
|
onClick: props.onClick ? props.onClick : undefined,
|
|
103
|
+
style: props.style ? props.style : undefined,
|
|
98
104
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
99
105
|
viewBox: "0 0 32 32",
|
|
100
106
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -107,6 +113,7 @@ function IconCreditCard(props) {
|
|
|
107
113
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
108
114
|
className: "icon fill icon-credit-card ".concat(props.className ? props.className : ''),
|
|
109
115
|
onClick: props.onClick ? props.onClick : undefined,
|
|
116
|
+
style: props.style ? props.style : undefined,
|
|
110
117
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
111
118
|
viewBox: "0 0 32 32",
|
|
112
119
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -119,6 +126,7 @@ function IconCurrencyRUB(props) {
|
|
|
119
126
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
120
127
|
className: "icon fill icon-currency-rub ".concat(props.className ? props.className : ''),
|
|
121
128
|
onClick: props.onClick ? props.onClick : undefined,
|
|
129
|
+
style: props.style ? props.style : undefined,
|
|
122
130
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
123
131
|
viewBox: "0 0 32 32",
|
|
124
132
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -131,6 +139,7 @@ function IconHandCoins(props) {
|
|
|
131
139
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
132
140
|
className: "icon fill icon-hand-coins ".concat(props.className ? props.className : ''),
|
|
133
141
|
onClick: props.onClick ? props.onClick : undefined,
|
|
142
|
+
style: props.style ? props.style : undefined,
|
|
134
143
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
135
144
|
viewBox: "0 0 32 32",
|
|
136
145
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -143,6 +152,7 @@ function IconReceipt(props) {
|
|
|
143
152
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
144
153
|
className: "icon fill icon-recceipt ".concat(props.className ? props.className : ''),
|
|
145
154
|
onClick: props.onClick ? props.onClick : undefined,
|
|
155
|
+
style: props.style ? props.style : undefined,
|
|
146
156
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
147
157
|
viewBox: "0 0 32 32",
|
|
148
158
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -155,6 +165,7 @@ function IconTicket(props) {
|
|
|
155
165
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
156
166
|
className: "icon fill icon-ticket ".concat(props.className ? props.className : ''),
|
|
157
167
|
onClick: props.onClick ? props.onClick : undefined,
|
|
168
|
+
style: props.style ? props.style : undefined,
|
|
158
169
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
159
170
|
viewBox: "0 0 32 32",
|
|
160
171
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -167,6 +178,7 @@ function IconWallet(props) {
|
|
|
167
178
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
168
179
|
className: "icon fill icon-wallet ".concat(props.className ? props.className : ''),
|
|
169
180
|
onClick: props.onClick ? props.onClick : undefined,
|
|
181
|
+
style: props.style ? props.style : undefined,
|
|
170
182
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
171
183
|
viewBox: "0 0 32 32",
|
|
172
184
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -179,6 +191,7 @@ function IconScales(props) {
|
|
|
179
191
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
180
192
|
className: "icon fill icon-scales ".concat(props.className ? props.className : ''),
|
|
181
193
|
onClick: props.onClick ? props.onClick : undefined,
|
|
194
|
+
style: props.style ? props.style : undefined,
|
|
182
195
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
183
196
|
viewBox: "0 0 32 32",
|
|
184
197
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -191,6 +204,7 @@ function IconBread(props) {
|
|
|
191
204
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
192
205
|
className: "icon fill icon-bread ".concat(props.className ? props.className : ''),
|
|
193
206
|
onClick: props.onClick ? props.onClick : undefined,
|
|
207
|
+
style: props.style ? props.style : undefined,
|
|
194
208
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
195
209
|
viewBox: "0 0 32 32",
|
|
196
210
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -203,6 +217,7 @@ function IconChampagne(props) {
|
|
|
203
217
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
204
218
|
className: "icon fill icon-champagne ".concat(props.className ? props.className : ''),
|
|
205
219
|
onClick: props.onClick ? props.onClick : undefined,
|
|
220
|
+
style: props.style ? props.style : undefined,
|
|
206
221
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
207
222
|
viewBox: "0 0 32 32",
|
|
208
223
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -215,6 +230,7 @@ function IconEgg(props) {
|
|
|
215
230
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
216
231
|
className: "icon fill icon-egg ".concat(props.className ? props.className : ''),
|
|
217
232
|
onClick: props.onClick ? props.onClick : undefined,
|
|
233
|
+
style: props.style ? props.style : undefined,
|
|
218
234
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
219
235
|
viewBox: "0 0 32 32",
|
|
220
236
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -227,6 +243,7 @@ function IconHamburger(props) {
|
|
|
227
243
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
228
244
|
className: "icon fill icon-hamburger ".concat(props.className ? props.className : ''),
|
|
229
245
|
onClick: props.onClick ? props.onClick : undefined,
|
|
246
|
+
style: props.style ? props.style : undefined,
|
|
230
247
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
231
248
|
viewBox: "0 0 32 32",
|
|
232
249
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -239,6 +256,7 @@ function IconCoffee(props) {
|
|
|
239
256
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
240
257
|
className: "icon fill icon-coffee ".concat(props.className ? props.className : ''),
|
|
241
258
|
onClick: props.onClick ? props.onClick : undefined,
|
|
259
|
+
style: props.style ? props.style : undefined,
|
|
242
260
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
243
261
|
viewBox: "0 0 32 32",
|
|
244
262
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -251,6 +269,7 @@ function IconBeerBottle(props) {
|
|
|
251
269
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
252
270
|
className: "icon fill icon-beer-bottle ".concat(props.className ? props.className : ''),
|
|
253
271
|
onClick: props.onClick ? props.onClick : undefined,
|
|
272
|
+
style: props.style ? props.style : undefined,
|
|
254
273
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
255
274
|
viewBox: "0 0 32 32",
|
|
256
275
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -263,6 +282,7 @@ function IconBeerStein(props) {
|
|
|
263
282
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
264
283
|
className: "icon fill icon-beer-stein ".concat(props.className ? props.className : ''),
|
|
265
284
|
onClick: props.onClick ? props.onClick : undefined,
|
|
285
|
+
style: props.style ? props.style : undefined,
|
|
266
286
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
267
287
|
viewBox: "0 0 32 32",
|
|
268
288
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -275,6 +295,7 @@ function IconBowlSteam(props) {
|
|
|
275
295
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
276
296
|
className: "icon fill icon-bowl-steam ".concat(props.className ? props.className : ''),
|
|
277
297
|
onClick: props.onClick ? props.onClick : undefined,
|
|
298
|
+
style: props.style ? props.style : undefined,
|
|
278
299
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
279
300
|
viewBox: "0 0 32 32",
|
|
280
301
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -287,6 +308,7 @@ function IconBrandy(props) {
|
|
|
287
308
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
288
309
|
className: "icon fill icon-brandy ".concat(props.className ? props.className : ''),
|
|
289
310
|
onClick: props.onClick ? props.onClick : undefined,
|
|
311
|
+
style: props.style ? props.style : undefined,
|
|
290
312
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
291
313
|
viewBox: "0 0 32 32",
|
|
292
314
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -299,6 +321,7 @@ function IconCallBell(props) {
|
|
|
299
321
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
300
322
|
className: "icon fill icon-call-bell ".concat(props.className ? props.className : ''),
|
|
301
323
|
onClick: props.onClick ? props.onClick : undefined,
|
|
324
|
+
style: props.style ? props.style : undefined,
|
|
302
325
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
303
326
|
viewBox: "0 0 32 32",
|
|
304
327
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -311,6 +334,7 @@ function IconForkKnife(props) {
|
|
|
311
334
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
312
335
|
className: "icon fill icon-fork-knife ".concat(props.className ? props.className : ''),
|
|
313
336
|
onClick: props.onClick ? props.onClick : undefined,
|
|
337
|
+
style: props.style ? props.style : undefined,
|
|
314
338
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
315
339
|
viewBox: "0 0 32 32",
|
|
316
340
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -323,6 +347,7 @@ function IconPintGlass(props) {
|
|
|
323
347
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
324
348
|
className: "icon fill icon-pint-glass ".concat(props.className ? props.className : ''),
|
|
325
349
|
onClick: props.onClick ? props.onClick : undefined,
|
|
350
|
+
style: props.style ? props.style : undefined,
|
|
326
351
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
327
352
|
viewBox: "0 0 32 32",
|
|
328
353
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -335,6 +360,7 @@ function IconCookie(props) {
|
|
|
335
360
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
336
361
|
className: "icon fill icon-cooke ".concat(props.className ? props.className : ''),
|
|
337
362
|
onClick: props.onClick ? props.onClick : undefined,
|
|
363
|
+
style: props.style ? props.style : undefined,
|
|
338
364
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
339
365
|
viewBox: "0 0 32 32",
|
|
340
366
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -347,6 +373,7 @@ function IconGrain(props) {
|
|
|
347
373
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
348
374
|
className: "icon fill icon-grain ".concat(props.className ? props.className : ''),
|
|
349
375
|
onClick: props.onClick ? props.onClick : undefined,
|
|
376
|
+
style: props.style ? props.style : undefined,
|
|
350
377
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
351
378
|
viewBox: "0 0 32 32",
|
|
352
379
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -14,6 +14,7 @@ function IconChatTeardropText(props) {
|
|
|
14
14
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
15
15
|
className: "icon fill icon-char-teardrop-text ".concat(props.className ? props.className : ''),
|
|
16
16
|
onClick: props.onClick ? props.onClick : undefined,
|
|
17
|
+
style: props.style ? props.style : undefined,
|
|
17
18
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
18
19
|
viewBox: "0 0 32 32",
|
|
19
20
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -26,6 +27,7 @@ function IconRSS(props) {
|
|
|
26
27
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
27
28
|
className: "icon fill icon-rss ".concat(props.className ? props.className : ''),
|
|
28
29
|
onClick: props.onClick ? props.onClick : undefined,
|
|
30
|
+
style: props.style ? props.style : undefined,
|
|
29
31
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
30
32
|
viewBox: "0 0 32 32",
|
|
31
33
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -38,6 +40,7 @@ function IconSignature(props) {
|
|
|
38
40
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
39
41
|
className: "icon fill icon-signature ".concat(props.className ? props.className : ''),
|
|
40
42
|
onClick: props.onClick ? props.onClick : undefined,
|
|
43
|
+
style: props.style ? props.style : undefined,
|
|
41
44
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
42
45
|
viewBox: "0 0 32 32",
|
|
43
46
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -50,6 +53,7 @@ function IconStar(props) {
|
|
|
50
53
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
51
54
|
className: "icon fill icon-star ".concat(props.className ? props.className : ''),
|
|
52
55
|
onClick: props.onClick ? props.onClick : undefined,
|
|
56
|
+
style: props.style ? props.style : undefined,
|
|
53
57
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
54
58
|
viewBox: "0 0 32 32",
|
|
55
59
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -62,6 +66,7 @@ function IconQuotes(props) {
|
|
|
62
66
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
63
67
|
className: "icon fill icon-quotes ".concat(props.className ? props.className : ''),
|
|
64
68
|
onClick: props.onClick ? props.onClick : undefined,
|
|
69
|
+
style: props.style ? props.style : undefined,
|
|
65
70
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
66
71
|
viewBox: "0 0 32 32",
|
|
67
72
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -74,6 +79,7 @@ function IconEnvelope(props) {
|
|
|
74
79
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
75
80
|
className: "icon fill icon-envelope ".concat(props.className ? props.className : ''),
|
|
76
81
|
onClick: props.onClick ? props.onClick : undefined,
|
|
82
|
+
style: props.style ? props.style : undefined,
|
|
77
83
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
78
84
|
viewBox: "0 0 32 32",
|
|
79
85
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
package/dist/icons-ui-design.js
CHANGED
|
@@ -25,6 +25,7 @@ function IconCirclesFour(props) {
|
|
|
25
25
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
26
26
|
className: "icon fill icon-circles-four ".concat(props.className ? props.className : ''),
|
|
27
27
|
onClick: props.onClick ? props.onClick : undefined,
|
|
28
|
+
style: props.style ? props.style : undefined,
|
|
28
29
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
29
30
|
viewBox: "0 0 32 32",
|
|
30
31
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -37,6 +38,7 @@ function IconCirclesThreePlus(props) {
|
|
|
37
38
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
38
39
|
className: "icon fill icon-circles-three-plus ".concat(props.className ? props.className : ''),
|
|
39
40
|
onClick: props.onClick ? props.onClick : undefined,
|
|
41
|
+
style: props.style ? props.style : undefined,
|
|
40
42
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
41
43
|
viewBox: "0 0 32 32",
|
|
42
44
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -49,6 +51,7 @@ function IconSquaresFour(props) {
|
|
|
49
51
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
50
52
|
className: "icon fill icon-squares-four ".concat(props.className ? props.className : ''),
|
|
51
53
|
onClick: props.onClick ? props.onClick : undefined,
|
|
54
|
+
style: props.style ? props.style : undefined,
|
|
52
55
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
53
56
|
viewBox: "0 0 32 32",
|
|
54
57
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -61,6 +64,7 @@ function IconSquare(props) {
|
|
|
61
64
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
62
65
|
className: "icon fill icon-square ".concat(props.className ? props.className : ''),
|
|
63
66
|
onClick: props.onClick ? props.onClick : undefined,
|
|
67
|
+
style: props.style ? props.style : undefined,
|
|
64
68
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
65
69
|
viewBox: "0 0 32 32",
|
|
66
70
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -73,6 +77,7 @@ function IconEraser(props) {
|
|
|
73
77
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
74
78
|
className: "icon fill icon-eraser ".concat(props.className ? props.className : ''),
|
|
75
79
|
onClick: props.onClick ? props.onClick : undefined,
|
|
80
|
+
style: props.style ? props.style : undefined,
|
|
76
81
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
77
82
|
viewBox: "0 0 32 32",
|
|
78
83
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -85,6 +90,7 @@ function IconPalette(props) {
|
|
|
85
90
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
86
91
|
className: "icon fill icon-palette ".concat(props.className ? props.className : ''),
|
|
87
92
|
onClick: props.onClick ? props.onClick : undefined,
|
|
93
|
+
style: props.style ? props.style : undefined,
|
|
88
94
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
89
95
|
viewBox: "0 0 32 32",
|
|
90
96
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -97,6 +103,7 @@ function IconCircle(props) {
|
|
|
97
103
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
98
104
|
className: "icon fill icon-circle ".concat(props.className ? props.className : ''),
|
|
99
105
|
onClick: props.onClick ? props.onClick : undefined,
|
|
106
|
+
style: props.style ? props.style : undefined,
|
|
100
107
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
101
108
|
viewBox: "0 0 32 32",
|
|
102
109
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -109,6 +116,7 @@ function IconRuler(props) {
|
|
|
109
116
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
110
117
|
className: "icon fill icon-ruler ".concat(props.className ? props.className : ''),
|
|
111
118
|
onClick: props.onClick ? props.onClick : undefined,
|
|
119
|
+
style: props.style ? props.style : undefined,
|
|
112
120
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
113
121
|
viewBox: "0 0 32 32",
|
|
114
122
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -121,6 +129,7 @@ function IconStack(props) {
|
|
|
121
129
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
122
130
|
className: "icon fill icon-stack ".concat(props.className ? props.className : ''),
|
|
123
131
|
onClick: props.onClick ? props.onClick : undefined,
|
|
132
|
+
style: props.style ? props.style : undefined,
|
|
124
133
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
125
134
|
viewBox: "0 0 32 32",
|
|
126
135
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -133,6 +142,7 @@ function IconStackPlus(props) {
|
|
|
133
142
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
134
143
|
className: "icon fill icon-stack-plus ".concat(props.className ? props.className : ''),
|
|
135
144
|
onClick: props.onClick ? props.onClick : undefined,
|
|
145
|
+
style: props.style ? props.style : undefined,
|
|
136
146
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
137
147
|
viewBox: "0 0 32 32",
|
|
138
148
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -145,6 +155,7 @@ function IconUniteSquare(props) {
|
|
|
145
155
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
146
156
|
className: "icon fill icon-unite-square ".concat(props.className ? props.className : ''),
|
|
147
157
|
onClick: props.onClick ? props.onClick : undefined,
|
|
158
|
+
style: props.style ? props.style : undefined,
|
|
148
159
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
149
160
|
viewBox: "0 0 32 32",
|
|
150
161
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -157,6 +168,7 @@ function IconSubstractSquare(props) {
|
|
|
157
168
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
158
169
|
className: "icon fill icon-substract-square ".concat(props.className ? props.className : ''),
|
|
159
170
|
onClick: props.onClick ? props.onClick : undefined,
|
|
171
|
+
style: props.style ? props.style : undefined,
|
|
160
172
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
161
173
|
viewBox: "0 0 32 32",
|
|
162
174
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -169,6 +181,7 @@ function IconCirclesThree(props) {
|
|
|
169
181
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
170
182
|
className: "icon fill icon-circles-three ".concat(props.className ? props.className : ''),
|
|
171
183
|
onClick: props.onClick ? props.onClick : undefined,
|
|
184
|
+
style: props.style ? props.style : undefined,
|
|
172
185
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
173
186
|
viewBox: "0 0 32 32",
|
|
174
187
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -181,6 +194,7 @@ function IconGridNine(props) {
|
|
|
181
194
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
182
195
|
className: "icon fill icon-grid-nine ".concat(props.className ? props.className : ''),
|
|
183
196
|
onClick: props.onClick ? props.onClick : undefined,
|
|
197
|
+
style: props.style ? props.style : undefined,
|
|
184
198
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
185
199
|
viewBox: "0 0 32 32",
|
|
186
200
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -193,6 +207,7 @@ function IconHighlighter(props) {
|
|
|
193
207
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
194
208
|
className: "icon fill icon-highlighter ".concat(props.className ? props.className : ''),
|
|
195
209
|
onClick: props.onClick ? props.onClick : undefined,
|
|
210
|
+
style: props.style ? props.style : undefined,
|
|
196
211
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
197
212
|
viewBox: "0 0 32 32",
|
|
198
213
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -205,6 +220,7 @@ function IconEyeClosed(props) {
|
|
|
205
220
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
206
221
|
className: "icon fill icon-eye-closed ".concat(props.className ? props.className : ''),
|
|
207
222
|
onClick: props.onClick ? props.onClick : undefined,
|
|
223
|
+
style: props.style ? props.style : undefined,
|
|
208
224
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
209
225
|
viewBox: "0 0 32 32",
|
|
210
226
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -217,6 +233,7 @@ function IconEye(props) {
|
|
|
217
233
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
218
234
|
className: "icon fill icon-eye ".concat(props.className ? props.className : ''),
|
|
219
235
|
onClick: props.onClick ? props.onClick : undefined,
|
|
236
|
+
style: props.style ? props.style : undefined,
|
|
220
237
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
221
238
|
viewBox: "0 0 32 32",
|
|
222
239
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -14,6 +14,7 @@ function IconRobot(props) {
|
|
|
14
14
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
15
15
|
className: "icon fill icon-robot ".concat(props.className ? props.className : ''),
|
|
16
16
|
onClick: props.onClick ? props.onClick : undefined,
|
|
17
|
+
style: props.style ? props.style : undefined,
|
|
17
18
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
18
19
|
viewBox: "0 0 32 32",
|
|
19
20
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -26,6 +27,7 @@ function IconTerminal(props) {
|
|
|
26
27
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
27
28
|
className: "icon fill icon-terminal ".concat(props.className ? props.className : ''),
|
|
28
29
|
onClick: props.onClick ? props.onClick : undefined,
|
|
30
|
+
style: props.style ? props.style : undefined,
|
|
29
31
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
30
32
|
viewBox: "0 0 32 32",
|
|
31
33
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -38,6 +40,7 @@ function IconTreeStructure(props) {
|
|
|
38
40
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
39
41
|
className: "icon fill icon-tree-structure ".concat(props.className ? props.className : ''),
|
|
40
42
|
onClick: props.onClick ? props.onClick : undefined,
|
|
43
|
+
style: props.style ? props.style : undefined,
|
|
41
44
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
42
45
|
viewBox: "0 0 32 32",
|
|
43
46
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -50,6 +53,7 @@ function IconCodeBlock(props) {
|
|
|
50
53
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
51
54
|
className: "icon fill icon-code-block ".concat(props.className ? props.className : ''),
|
|
52
55
|
onClick: props.onClick ? props.onClick : undefined,
|
|
56
|
+
style: props.style ? props.style : undefined,
|
|
53
57
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
54
58
|
viewBox: "0 0 32 32",
|
|
55
59
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -62,6 +66,7 @@ function IconCodeSimple(props) {
|
|
|
62
66
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
63
67
|
className: "icon fill icon-code-simple ".concat(props.className ? props.className : ''),
|
|
64
68
|
onClick: props.onClick ? props.onClick : undefined,
|
|
69
|
+
style: props.style ? props.style : undefined,
|
|
65
70
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
66
71
|
viewBox: "0 0 32 32",
|
|
67
72
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -74,6 +79,7 @@ function IconBracketsSquare(props) {
|
|
|
74
79
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
75
80
|
className: "icon fill icon-brackets-square ".concat(props.className ? props.className : ''),
|
|
76
81
|
onClick: props.onClick ? props.onClick : undefined,
|
|
82
|
+
style: props.style ? props.style : undefined,
|
|
77
83
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
78
84
|
viewBox: "0 0 32 32",
|
|
79
85
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
package/dist/icons-ui-games.js
CHANGED
|
@@ -9,6 +9,7 @@ function IconTarget(props) {
|
|
|
9
9
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
10
10
|
className: "icon fill icon-target ".concat(props.className ? props.className : ''),
|
|
11
11
|
onClick: props.onClick ? props.onClick : undefined,
|
|
12
|
+
style: props.style ? props.style : undefined,
|
|
12
13
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
13
14
|
viewBox: "0 0 32 32",
|
|
14
15
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -10,6 +10,7 @@ function IconPulse(props) {
|
|
|
10
10
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
11
11
|
className: "icon fill icon-pulse ".concat(props.className ? props.className : ''),
|
|
12
12
|
onClick: props.onClick ? props.onClick : undefined,
|
|
13
|
+
style: props.style ? props.style : undefined,
|
|
13
14
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
14
15
|
viewBox: "0 0 32 32",
|
|
15
16
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -22,6 +23,7 @@ function IconSyringe(props) {
|
|
|
22
23
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
23
24
|
className: "icon fill icon-syringe ".concat(props.className ? props.className : ''),
|
|
24
25
|
onClick: props.onClick ? props.onClick : undefined,
|
|
26
|
+
style: props.style ? props.style : undefined,
|
|
25
27
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
26
28
|
viewBox: "0 0 32 32",
|
|
27
29
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -14,6 +14,7 @@ function IconCalendar(props) {
|
|
|
14
14
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
15
15
|
className: "icon fill icon-calendar ".concat(props.className ? props.className : ''),
|
|
16
16
|
onClick: props.onClick ? props.onClick : undefined,
|
|
17
|
+
style: props.style ? props.style : undefined,
|
|
17
18
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
18
19
|
viewBox: "0 0 32 32",
|
|
19
20
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -26,6 +27,7 @@ function IconFlag(props) {
|
|
|
26
27
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
27
28
|
className: "icon fill icon-flag ".concat(props.className ? props.className : ''),
|
|
28
29
|
onClick: props.onClick ? props.onClick : undefined,
|
|
30
|
+
style: props.style ? props.style : undefined,
|
|
29
31
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
30
32
|
viewBox: "0 0 32 32",
|
|
31
33
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -38,6 +40,7 @@ function IconMapPin(props) {
|
|
|
38
40
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
39
41
|
className: "icon fill icon-map-pin ".concat(props.className ? props.className : ''),
|
|
40
42
|
onClick: props.onClick ? props.onClick : undefined,
|
|
43
|
+
style: props.style ? props.style : undefined,
|
|
41
44
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
42
45
|
viewBox: "0 0 32 32",
|
|
43
46
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -50,6 +53,7 @@ function IconMapPinSimpleArea(props) {
|
|
|
50
53
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
51
54
|
className: "icon fill icon-map-pin-simple-area ".concat(props.className ? props.className : ''),
|
|
52
55
|
onClick: props.onClick ? props.onClick : undefined,
|
|
56
|
+
style: props.style ? props.style : undefined,
|
|
53
57
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
54
58
|
viewBox: "0 0 32 32",
|
|
55
59
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -62,6 +66,7 @@ function IconTruck(props) {
|
|
|
62
66
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
63
67
|
className: "icon fill icon-truck ".concat(props.className ? props.className : ''),
|
|
64
68
|
onClick: props.onClick ? props.onClick : undefined,
|
|
69
|
+
style: props.style ? props.style : undefined,
|
|
65
70
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
66
71
|
viewBox: "0 0 32 32",
|
|
67
72
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
@@ -74,6 +79,7 @@ function IconFlagPennant(props) {
|
|
|
74
79
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
75
80
|
className: "icon fill icon-flag-pennant ".concat(props.className ? props.className : ''),
|
|
76
81
|
onClick: props.onClick ? props.onClick : undefined,
|
|
82
|
+
style: props.style ? props.style : undefined,
|
|
77
83
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
|
|
78
84
|
viewBox: "0 0 32 32",
|
|
79
85
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|