@deemlol/next-icons 0.2.4 → 0.2.6
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/README.md +19 -0
- package/build/{icons/zoom/ZoomIn.d.ts → animated/icons/alarm/Alarm.d.ts} +2 -2
- package/build/animated/icons/alarm/AlarmCheck.d.ts +8 -0
- package/build/animated/icons/alarm/AlarmMinus.d.ts +8 -0
- package/build/animated/icons/alarm/AlarmOff.d.ts +8 -0
- package/build/animated/icons/alarm/AlarmPlus.d.ts +8 -0
- package/build/{icons/zoom/ZoomOut.d.ts → animated/icons/alarm/Clock.d.ts} +2 -2
- package/build/animated/index.d.ts +8 -0
- package/build/animated/index.js +1006 -0
- package/build/icons/social/TwitterNew.d.ts +8 -0
- package/build/index.d.ts +1 -0
- package/build/index.js +26 -1
- package/package.json +15 -1
package/README.md
CHANGED
|
@@ -52,6 +52,25 @@ export default function Question() {
|
|
|
52
52
|
}
|
|
53
53
|
```
|
|
54
54
|
|
|
55
|
+
## Animated Icons
|
|
56
|
+
|
|
57
|
+
Animated icons are available from a dedicated import path:
|
|
58
|
+
|
|
59
|
+
```javascript
|
|
60
|
+
import { Alarm } from "@deemlol/next-icons/animated";
|
|
61
|
+
|
|
62
|
+
export default function Preview() {
|
|
63
|
+
return (
|
|
64
|
+
<div>
|
|
65
|
+
<Alarm />
|
|
66
|
+
</div>
|
|
67
|
+
);
|
|
68
|
+
}
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
You can use the same props as regular icons (`size`, `color`, `strokeWidth`, `className`).
|
|
72
|
+
Some animations are interactive and run on hover/focus.
|
|
73
|
+
|
|
55
74
|
## Configuration
|
|
56
75
|
|
|
57
76
|
All our icons can be also configured with props.
|
|
@@ -4,5 +4,5 @@ interface IconProps extends SVGAttributes<SVGElement> {
|
|
|
4
4
|
size?: string | number;
|
|
5
5
|
strokeWidth?: string | number;
|
|
6
6
|
}
|
|
7
|
-
declare const
|
|
8
|
-
export default
|
|
7
|
+
declare const Alarm: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
export default Alarm;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
3
|
+
color?: string;
|
|
4
|
+
size?: string | number;
|
|
5
|
+
strokeWidth?: string | number;
|
|
6
|
+
}
|
|
7
|
+
declare const AlarmCheck: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
export default AlarmCheck;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
3
|
+
color?: string;
|
|
4
|
+
size?: string | number;
|
|
5
|
+
strokeWidth?: string | number;
|
|
6
|
+
}
|
|
7
|
+
declare const AlarmMinus: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
export default AlarmMinus;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
3
|
+
color?: string;
|
|
4
|
+
size?: string | number;
|
|
5
|
+
strokeWidth?: string | number;
|
|
6
|
+
}
|
|
7
|
+
declare const AlarmOff: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
export default AlarmOff;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
3
|
+
color?: string;
|
|
4
|
+
size?: string | number;
|
|
5
|
+
strokeWidth?: string | number;
|
|
6
|
+
}
|
|
7
|
+
declare const AlarmPlus: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
export default AlarmPlus;
|
|
@@ -4,5 +4,5 @@ interface IconProps extends SVGAttributes<SVGElement> {
|
|
|
4
4
|
size?: string | number;
|
|
5
5
|
strokeWidth?: string | number;
|
|
6
6
|
}
|
|
7
|
-
declare const
|
|
8
|
-
export default
|
|
7
|
+
declare const Clock: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
export default Clock;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import Alarm from "./icons/alarm/Alarm";
|
|
2
|
+
import AlarmCheck from "./icons/alarm/AlarmCheck";
|
|
3
|
+
import AlarmMinus from "./icons/alarm/AlarmMinus";
|
|
4
|
+
import AlarmOff from "./icons/alarm/AlarmOff";
|
|
5
|
+
import AlarmPlus from "./icons/alarm/AlarmPlus";
|
|
6
|
+
import Clock from "./icons/alarm/Clock";
|
|
7
|
+
export { Alarm, AlarmCheck, AlarmMinus, AlarmOff, AlarmPlus, Clock };
|
|
8
|
+
export default Alarm;
|
|
@@ -0,0 +1,1006 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
import { motion } from 'framer-motion';
|
|
3
|
+
|
|
4
|
+
/******************************************************************************
|
|
5
|
+
Copyright (c) Microsoft Corporation.
|
|
6
|
+
|
|
7
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
8
|
+
purpose with or without fee is hereby granted.
|
|
9
|
+
|
|
10
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
11
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
12
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
13
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
14
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
15
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
16
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
17
|
+
***************************************************************************** */
|
|
18
|
+
/* global Reflect, Promise, SuppressedError, Symbol, Iterator */
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
var __assign = function() {
|
|
22
|
+
__assign = Object.assign || function __assign(t) {
|
|
23
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
24
|
+
s = arguments[i];
|
|
25
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
26
|
+
}
|
|
27
|
+
return t;
|
|
28
|
+
};
|
|
29
|
+
return __assign.apply(this, arguments);
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
function __rest(s, e) {
|
|
33
|
+
var t = {};
|
|
34
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
35
|
+
t[p] = s[p];
|
|
36
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
37
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
38
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
39
|
+
t[p[i]] = s[p[i]];
|
|
40
|
+
}
|
|
41
|
+
return t;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
|
45
|
+
var e = new Error(message);
|
|
46
|
+
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
var FRAME_VARIANTS$4 = {
|
|
50
|
+
idle: {
|
|
51
|
+
x: 0,
|
|
52
|
+
y: 0,
|
|
53
|
+
rotate: 0,
|
|
54
|
+
transition: {
|
|
55
|
+
duration: 0.25,
|
|
56
|
+
type: "spring",
|
|
57
|
+
stiffness: 220,
|
|
58
|
+
damping: 24
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
active: {
|
|
62
|
+
x: [0, -0.5, 0.5, -0.35, 0.35, -0.2, 0.2, 0],
|
|
63
|
+
y: [0, -0.15, 0.15, -0.1, 0.1, 0],
|
|
64
|
+
rotate: [0, -1.2, 1.2, -0.9, 0.9, -0.45, 0.45, 0],
|
|
65
|
+
transition: {
|
|
66
|
+
duration: 0.38,
|
|
67
|
+
ease: "easeInOut",
|
|
68
|
+
repeat: Number.POSITIVE_INFINITY,
|
|
69
|
+
repeatType: "loop"
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
};
|
|
73
|
+
var BELL_LEFT_VARIANTS$4 = {
|
|
74
|
+
idle: {
|
|
75
|
+
y: 0,
|
|
76
|
+
rotate: 0
|
|
77
|
+
},
|
|
78
|
+
active: {
|
|
79
|
+
y: [0, -0.45, -0.2, -0.55, -0.25, 0],
|
|
80
|
+
rotate: [0, -10, -6, -9, -5, 0],
|
|
81
|
+
transition: {
|
|
82
|
+
duration: 0.34,
|
|
83
|
+
ease: "easeInOut",
|
|
84
|
+
repeat: Number.POSITIVE_INFINITY,
|
|
85
|
+
repeatType: "loop"
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
};
|
|
89
|
+
var BELL_RIGHT_VARIANTS$4 = {
|
|
90
|
+
idle: {
|
|
91
|
+
y: 0,
|
|
92
|
+
rotate: 0
|
|
93
|
+
},
|
|
94
|
+
active: {
|
|
95
|
+
y: [0, -0.45, -0.2, -0.55, -0.25, 0],
|
|
96
|
+
rotate: [0, 10, 6, 9, 5, 0],
|
|
97
|
+
transition: {
|
|
98
|
+
duration: 0.34,
|
|
99
|
+
ease: "easeInOut",
|
|
100
|
+
repeat: Number.POSITIVE_INFINITY,
|
|
101
|
+
repeatType: "loop"
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
};
|
|
105
|
+
var HAND_VARIANTS = {
|
|
106
|
+
idle: {
|
|
107
|
+
rotate: 0,
|
|
108
|
+
transition: {
|
|
109
|
+
duration: 0.2
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
active: {
|
|
113
|
+
rotate: [0, 5, -5, 4, -4, 2.5, -2.5, 0],
|
|
114
|
+
transition: {
|
|
115
|
+
duration: 0.42,
|
|
116
|
+
ease: "easeInOut",
|
|
117
|
+
repeat: Number.POSITIVE_INFINITY,
|
|
118
|
+
repeatType: "loop"
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
};
|
|
122
|
+
var LEG_LEFT_VARIANTS = {
|
|
123
|
+
idle: {
|
|
124
|
+
y: 0,
|
|
125
|
+
rotate: 0
|
|
126
|
+
},
|
|
127
|
+
active: {
|
|
128
|
+
y: [0, 0.15, -0.1, 0.1, -0.05, 0],
|
|
129
|
+
rotate: [0, -1, 0.7, -0.6, 0.25, 0],
|
|
130
|
+
transition: {
|
|
131
|
+
duration: 0.38,
|
|
132
|
+
ease: "easeInOut",
|
|
133
|
+
repeat: Number.POSITIVE_INFINITY
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
};
|
|
137
|
+
var LEG_RIGHT_VARIANTS = {
|
|
138
|
+
idle: {
|
|
139
|
+
y: 0,
|
|
140
|
+
rotate: 0
|
|
141
|
+
},
|
|
142
|
+
active: {
|
|
143
|
+
y: [0, 0.15, -0.1, 0.1, -0.05, 0],
|
|
144
|
+
rotate: [0, 1, -0.7, 0.6, -0.25, 0],
|
|
145
|
+
transition: {
|
|
146
|
+
duration: 0.38,
|
|
147
|
+
ease: "easeInOut",
|
|
148
|
+
repeat: Number.POSITIVE_INFINITY
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
};
|
|
152
|
+
var Alarm = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
153
|
+
var _b = _a.color,
|
|
154
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
155
|
+
_c = _a.size,
|
|
156
|
+
size = _c === void 0 ? 24 : _c,
|
|
157
|
+
_d = _a.strokeWidth,
|
|
158
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
159
|
+
onMouseEnter = _a.onMouseEnter,
|
|
160
|
+
onMouseLeave = _a.onMouseLeave,
|
|
161
|
+
onFocus = _a.onFocus,
|
|
162
|
+
onBlur = _a.onBlur,
|
|
163
|
+
rest = __rest(_a, ["color", "size", "strokeWidth", "onMouseEnter", "onMouseLeave", "onFocus", "onBlur"]);
|
|
164
|
+
var _e = React.useState(false),
|
|
165
|
+
isActive = _e[0],
|
|
166
|
+
setIsActive = _e[1];
|
|
167
|
+
var handleMouseEnter = function handleMouseEnter(e) {
|
|
168
|
+
setIsActive(true);
|
|
169
|
+
onMouseEnter === null || onMouseEnter === void 0 ? void 0 : onMouseEnter(e);
|
|
170
|
+
};
|
|
171
|
+
var handleMouseLeave = function handleMouseLeave(e) {
|
|
172
|
+
setIsActive(false);
|
|
173
|
+
onMouseLeave === null || onMouseLeave === void 0 ? void 0 : onMouseLeave(e);
|
|
174
|
+
};
|
|
175
|
+
var handleFocus = function handleFocus(e) {
|
|
176
|
+
setIsActive(true);
|
|
177
|
+
onFocus === null || onFocus === void 0 ? void 0 : onFocus(e);
|
|
178
|
+
};
|
|
179
|
+
var handleBlur = function handleBlur(e) {
|
|
180
|
+
setIsActive(false);
|
|
181
|
+
onBlur === null || onBlur === void 0 ? void 0 : onBlur(e);
|
|
182
|
+
};
|
|
183
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
184
|
+
ref: ref,
|
|
185
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
186
|
+
width: size,
|
|
187
|
+
height: size,
|
|
188
|
+
viewBox: "0 0 24 24",
|
|
189
|
+
fill: "none",
|
|
190
|
+
stroke: color,
|
|
191
|
+
strokeWidth: strokeWidth,
|
|
192
|
+
strokeLinecap: "round",
|
|
193
|
+
strokeLinejoin: "round",
|
|
194
|
+
onMouseEnter: handleMouseEnter,
|
|
195
|
+
onMouseLeave: handleMouseLeave,
|
|
196
|
+
onFocus: handleFocus,
|
|
197
|
+
onBlur: handleBlur
|
|
198
|
+
}, rest), /*#__PURE__*/React.createElement(motion.g, {
|
|
199
|
+
initial: "idle",
|
|
200
|
+
animate: isActive ? "active" : "idle",
|
|
201
|
+
variants: FRAME_VARIANTS$4,
|
|
202
|
+
style: {
|
|
203
|
+
transformOrigin: "12px 13px"
|
|
204
|
+
}
|
|
205
|
+
}, /*#__PURE__*/React.createElement("circle", {
|
|
206
|
+
cx: "12",
|
|
207
|
+
cy: "13",
|
|
208
|
+
r: "8"
|
|
209
|
+
}), /*#__PURE__*/React.createElement(motion.path, {
|
|
210
|
+
d: "M12 9v4l2 2",
|
|
211
|
+
variants: HAND_VARIANTS,
|
|
212
|
+
style: {
|
|
213
|
+
transformOrigin: "12px 13px"
|
|
214
|
+
}
|
|
215
|
+
}), /*#__PURE__*/React.createElement(motion.path, {
|
|
216
|
+
d: "M5 3 2 6",
|
|
217
|
+
variants: BELL_LEFT_VARIANTS$4,
|
|
218
|
+
style: {
|
|
219
|
+
transformOrigin: "5px 3px"
|
|
220
|
+
}
|
|
221
|
+
}), /*#__PURE__*/React.createElement(motion.path, {
|
|
222
|
+
d: "m22 6-3-3",
|
|
223
|
+
variants: BELL_RIGHT_VARIANTS$4,
|
|
224
|
+
style: {
|
|
225
|
+
transformOrigin: "19px 3px"
|
|
226
|
+
}
|
|
227
|
+
}), /*#__PURE__*/React.createElement(motion.path, {
|
|
228
|
+
d: "M6.38 18.7 4 21",
|
|
229
|
+
variants: LEG_LEFT_VARIANTS,
|
|
230
|
+
style: {
|
|
231
|
+
transformOrigin: "6.38px 18.7px"
|
|
232
|
+
}
|
|
233
|
+
}), /*#__PURE__*/React.createElement(motion.path, {
|
|
234
|
+
d: "M17.64 18.67 20 21",
|
|
235
|
+
variants: LEG_RIGHT_VARIANTS,
|
|
236
|
+
style: {
|
|
237
|
+
transformOrigin: "17.64px 18.67px"
|
|
238
|
+
}
|
|
239
|
+
})));
|
|
240
|
+
});
|
|
241
|
+
Alarm.displayName = "Alarm";
|
|
242
|
+
|
|
243
|
+
var FRAME_VARIANTS$3 = {
|
|
244
|
+
idle: {
|
|
245
|
+
rotate: 0,
|
|
246
|
+
x: 0,
|
|
247
|
+
y: 0,
|
|
248
|
+
scale: 1,
|
|
249
|
+
transition: {
|
|
250
|
+
duration: 0.28,
|
|
251
|
+
ease: "easeOut"
|
|
252
|
+
}
|
|
253
|
+
},
|
|
254
|
+
active: {
|
|
255
|
+
rotate: [0, -1.1, 1.1, -0.7, 0.7, 0],
|
|
256
|
+
x: [0, -0.25, 0.25, -0.15, 0.15, 0],
|
|
257
|
+
y: [0, -0.15, 0.05, -0.1, 0],
|
|
258
|
+
scale: [1, 1.015, 1],
|
|
259
|
+
transition: {
|
|
260
|
+
duration: 0.8,
|
|
261
|
+
ease: "easeInOut",
|
|
262
|
+
repeat: Number.POSITIVE_INFINITY
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
};
|
|
266
|
+
var BELL_LEFT_VARIANTS$3 = {
|
|
267
|
+
idle: {
|
|
268
|
+
rotate: 0,
|
|
269
|
+
y: 0
|
|
270
|
+
},
|
|
271
|
+
active: {
|
|
272
|
+
rotate: [0, -8, -4, -7, -3, 0],
|
|
273
|
+
y: [0, -0.3, -0.1, -0.25, 0],
|
|
274
|
+
transition: {
|
|
275
|
+
duration: 0.56,
|
|
276
|
+
ease: "easeInOut",
|
|
277
|
+
repeat: Number.POSITIVE_INFINITY
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
};
|
|
281
|
+
var BELL_RIGHT_VARIANTS$3 = {
|
|
282
|
+
idle: {
|
|
283
|
+
rotate: 0,
|
|
284
|
+
y: 0
|
|
285
|
+
},
|
|
286
|
+
active: {
|
|
287
|
+
rotate: [0, 8, 4, 7, 3, 0],
|
|
288
|
+
y: [0, -0.3, -0.1, -0.25, 0],
|
|
289
|
+
transition: {
|
|
290
|
+
duration: 0.56,
|
|
291
|
+
ease: "easeInOut",
|
|
292
|
+
repeat: Number.POSITIVE_INFINITY
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
};
|
|
296
|
+
var CHECK_VARIANTS = {
|
|
297
|
+
idle: {
|
|
298
|
+
pathLength: 1,
|
|
299
|
+
opacity: 1,
|
|
300
|
+
scale: 1,
|
|
301
|
+
transition: {
|
|
302
|
+
duration: 0.2,
|
|
303
|
+
ease: "easeOut"
|
|
304
|
+
}
|
|
305
|
+
},
|
|
306
|
+
active: {
|
|
307
|
+
pathLength: [0.25, 1, 1],
|
|
308
|
+
opacity: [0.65, 1, 1],
|
|
309
|
+
scale: [0.96, 1.04, 1],
|
|
310
|
+
transition: {
|
|
311
|
+
duration: 0.7,
|
|
312
|
+
ease: "easeInOut",
|
|
313
|
+
repeat: Number.POSITIVE_INFINITY
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
};
|
|
317
|
+
var AlarmCheck = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
318
|
+
var _b = _a.color,
|
|
319
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
320
|
+
_c = _a.size,
|
|
321
|
+
size = _c === void 0 ? 24 : _c,
|
|
322
|
+
_d = _a.strokeWidth,
|
|
323
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
324
|
+
onMouseEnter = _a.onMouseEnter,
|
|
325
|
+
onMouseLeave = _a.onMouseLeave,
|
|
326
|
+
onFocus = _a.onFocus,
|
|
327
|
+
onBlur = _a.onBlur,
|
|
328
|
+
rest = __rest(_a, ["color", "size", "strokeWidth", "onMouseEnter", "onMouseLeave", "onFocus", "onBlur"]);
|
|
329
|
+
var _e = React.useState(false),
|
|
330
|
+
isActive = _e[0],
|
|
331
|
+
setIsActive = _e[1];
|
|
332
|
+
var handleMouseEnter = function handleMouseEnter(e) {
|
|
333
|
+
setIsActive(true);
|
|
334
|
+
onMouseEnter === null || onMouseEnter === void 0 ? void 0 : onMouseEnter(e);
|
|
335
|
+
};
|
|
336
|
+
var handleMouseLeave = function handleMouseLeave(e) {
|
|
337
|
+
setIsActive(false);
|
|
338
|
+
onMouseLeave === null || onMouseLeave === void 0 ? void 0 : onMouseLeave(e);
|
|
339
|
+
};
|
|
340
|
+
var handleFocus = function handleFocus(e) {
|
|
341
|
+
setIsActive(true);
|
|
342
|
+
onFocus === null || onFocus === void 0 ? void 0 : onFocus(e);
|
|
343
|
+
};
|
|
344
|
+
var handleBlur = function handleBlur(e) {
|
|
345
|
+
setIsActive(false);
|
|
346
|
+
onBlur === null || onBlur === void 0 ? void 0 : onBlur(e);
|
|
347
|
+
};
|
|
348
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
349
|
+
ref: ref,
|
|
350
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
351
|
+
width: size,
|
|
352
|
+
height: size,
|
|
353
|
+
viewBox: "0 0 24 24",
|
|
354
|
+
fill: "none",
|
|
355
|
+
stroke: color,
|
|
356
|
+
strokeWidth: strokeWidth,
|
|
357
|
+
strokeLinecap: "round",
|
|
358
|
+
strokeLinejoin: "round",
|
|
359
|
+
onMouseEnter: handleMouseEnter,
|
|
360
|
+
onMouseLeave: handleMouseLeave,
|
|
361
|
+
onFocus: handleFocus,
|
|
362
|
+
onBlur: handleBlur
|
|
363
|
+
}, rest), /*#__PURE__*/React.createElement(motion.g, {
|
|
364
|
+
initial: "idle",
|
|
365
|
+
animate: isActive ? "active" : "idle",
|
|
366
|
+
variants: FRAME_VARIANTS$3,
|
|
367
|
+
style: {
|
|
368
|
+
transformOrigin: "12px 13px"
|
|
369
|
+
}
|
|
370
|
+
}, /*#__PURE__*/React.createElement("circle", {
|
|
371
|
+
cx: "12",
|
|
372
|
+
cy: "13",
|
|
373
|
+
r: "8"
|
|
374
|
+
}), /*#__PURE__*/React.createElement(motion.path, {
|
|
375
|
+
d: "M5 3 2 6",
|
|
376
|
+
variants: BELL_LEFT_VARIANTS$3,
|
|
377
|
+
style: {
|
|
378
|
+
transformOrigin: "5px 3px"
|
|
379
|
+
}
|
|
380
|
+
}), /*#__PURE__*/React.createElement(motion.path, {
|
|
381
|
+
d: "m22 6-3-3",
|
|
382
|
+
variants: BELL_RIGHT_VARIANTS$3,
|
|
383
|
+
style: {
|
|
384
|
+
transformOrigin: "19px 3px"
|
|
385
|
+
}
|
|
386
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
387
|
+
d: "M6.38 18.7 4 21"
|
|
388
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
389
|
+
d: "M17.64 18.67 20 21"
|
|
390
|
+
}), /*#__PURE__*/React.createElement(motion.path, {
|
|
391
|
+
d: "m9 13 2 2 4-4",
|
|
392
|
+
variants: CHECK_VARIANTS,
|
|
393
|
+
style: {
|
|
394
|
+
transformOrigin: "11px 13px"
|
|
395
|
+
}
|
|
396
|
+
})));
|
|
397
|
+
});
|
|
398
|
+
AlarmCheck.displayName = "AlarmCheck";
|
|
399
|
+
|
|
400
|
+
var FRAME_VARIANTS$2 = {
|
|
401
|
+
idle: {
|
|
402
|
+
rotate: 0,
|
|
403
|
+
x: 0,
|
|
404
|
+
y: 0,
|
|
405
|
+
scale: 1,
|
|
406
|
+
transition: {
|
|
407
|
+
duration: 0.25,
|
|
408
|
+
ease: "easeOut"
|
|
409
|
+
}
|
|
410
|
+
},
|
|
411
|
+
active: {
|
|
412
|
+
rotate: [0, -0.9, 0.9, -0.6, 0.6, 0],
|
|
413
|
+
x: [0, -0.2, 0.2, -0.15, 0.15, 0],
|
|
414
|
+
y: [0, -0.12, 0.05, -0.08, 0],
|
|
415
|
+
scale: [1, 1.012, 1],
|
|
416
|
+
transition: {
|
|
417
|
+
duration: 0.78,
|
|
418
|
+
ease: "easeInOut",
|
|
419
|
+
repeat: Number.POSITIVE_INFINITY
|
|
420
|
+
}
|
|
421
|
+
}
|
|
422
|
+
};
|
|
423
|
+
var BELL_LEFT_VARIANTS$2 = {
|
|
424
|
+
idle: {
|
|
425
|
+
rotate: 0,
|
|
426
|
+
y: 0
|
|
427
|
+
},
|
|
428
|
+
active: {
|
|
429
|
+
rotate: [0, -7, -4, -6, -3, 0],
|
|
430
|
+
y: [0, -0.28, -0.1, -0.2, 0],
|
|
431
|
+
transition: {
|
|
432
|
+
duration: 0.54,
|
|
433
|
+
ease: "easeInOut",
|
|
434
|
+
repeat: Number.POSITIVE_INFINITY
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
};
|
|
438
|
+
var BELL_RIGHT_VARIANTS$2 = {
|
|
439
|
+
idle: {
|
|
440
|
+
rotate: 0,
|
|
441
|
+
y: 0
|
|
442
|
+
},
|
|
443
|
+
active: {
|
|
444
|
+
rotate: [0, 7, 4, 6, 3, 0],
|
|
445
|
+
y: [0, -0.28, -0.1, -0.2, 0],
|
|
446
|
+
transition: {
|
|
447
|
+
duration: 0.54,
|
|
448
|
+
ease: "easeInOut",
|
|
449
|
+
repeat: Number.POSITIVE_INFINITY
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
};
|
|
453
|
+
var MINUS_VARIANTS = {
|
|
454
|
+
idle: {
|
|
455
|
+
scaleX: 1,
|
|
456
|
+
opacity: 1,
|
|
457
|
+
transition: {
|
|
458
|
+
duration: 0.2,
|
|
459
|
+
ease: "easeOut"
|
|
460
|
+
}
|
|
461
|
+
},
|
|
462
|
+
active: {
|
|
463
|
+
scaleX: [1, 0.72, 1, 0.82, 1],
|
|
464
|
+
opacity: [1, 0.62, 1, 0.78, 1],
|
|
465
|
+
transition: {
|
|
466
|
+
duration: 0.86,
|
|
467
|
+
ease: "easeInOut",
|
|
468
|
+
repeat: Number.POSITIVE_INFINITY
|
|
469
|
+
}
|
|
470
|
+
}
|
|
471
|
+
};
|
|
472
|
+
var AlarmMinus = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
473
|
+
var _b = _a.color,
|
|
474
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
475
|
+
_c = _a.size,
|
|
476
|
+
size = _c === void 0 ? 24 : _c,
|
|
477
|
+
_d = _a.strokeWidth,
|
|
478
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
479
|
+
onMouseEnter = _a.onMouseEnter,
|
|
480
|
+
onMouseLeave = _a.onMouseLeave,
|
|
481
|
+
onFocus = _a.onFocus,
|
|
482
|
+
onBlur = _a.onBlur,
|
|
483
|
+
rest = __rest(_a, ["color", "size", "strokeWidth", "onMouseEnter", "onMouseLeave", "onFocus", "onBlur"]);
|
|
484
|
+
var _e = React.useState(false),
|
|
485
|
+
isActive = _e[0],
|
|
486
|
+
setIsActive = _e[1];
|
|
487
|
+
var handleMouseEnter = function handleMouseEnter(e) {
|
|
488
|
+
setIsActive(true);
|
|
489
|
+
onMouseEnter === null || onMouseEnter === void 0 ? void 0 : onMouseEnter(e);
|
|
490
|
+
};
|
|
491
|
+
var handleMouseLeave = function handleMouseLeave(e) {
|
|
492
|
+
setIsActive(false);
|
|
493
|
+
onMouseLeave === null || onMouseLeave === void 0 ? void 0 : onMouseLeave(e);
|
|
494
|
+
};
|
|
495
|
+
var handleFocus = function handleFocus(e) {
|
|
496
|
+
setIsActive(true);
|
|
497
|
+
onFocus === null || onFocus === void 0 ? void 0 : onFocus(e);
|
|
498
|
+
};
|
|
499
|
+
var handleBlur = function handleBlur(e) {
|
|
500
|
+
setIsActive(false);
|
|
501
|
+
onBlur === null || onBlur === void 0 ? void 0 : onBlur(e);
|
|
502
|
+
};
|
|
503
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
504
|
+
ref: ref,
|
|
505
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
506
|
+
width: size,
|
|
507
|
+
height: size,
|
|
508
|
+
viewBox: "0 0 24 24",
|
|
509
|
+
fill: "none",
|
|
510
|
+
stroke: color,
|
|
511
|
+
strokeWidth: strokeWidth,
|
|
512
|
+
strokeLinecap: "round",
|
|
513
|
+
strokeLinejoin: "round",
|
|
514
|
+
onMouseEnter: handleMouseEnter,
|
|
515
|
+
onMouseLeave: handleMouseLeave,
|
|
516
|
+
onFocus: handleFocus,
|
|
517
|
+
onBlur: handleBlur
|
|
518
|
+
}, rest), /*#__PURE__*/React.createElement(motion.g, {
|
|
519
|
+
initial: "idle",
|
|
520
|
+
animate: isActive ? "active" : "idle",
|
|
521
|
+
variants: FRAME_VARIANTS$2,
|
|
522
|
+
style: {
|
|
523
|
+
transformOrigin: "12px 13px"
|
|
524
|
+
}
|
|
525
|
+
}, /*#__PURE__*/React.createElement("circle", {
|
|
526
|
+
cx: "12",
|
|
527
|
+
cy: "13",
|
|
528
|
+
r: "8"
|
|
529
|
+
}), /*#__PURE__*/React.createElement(motion.path, {
|
|
530
|
+
d: "M5 3 2 6",
|
|
531
|
+
variants: BELL_LEFT_VARIANTS$2,
|
|
532
|
+
style: {
|
|
533
|
+
transformOrigin: "5px 3px"
|
|
534
|
+
}
|
|
535
|
+
}), /*#__PURE__*/React.createElement(motion.path, {
|
|
536
|
+
d: "m22 6-3-3",
|
|
537
|
+
variants: BELL_RIGHT_VARIANTS$2,
|
|
538
|
+
style: {
|
|
539
|
+
transformOrigin: "19px 3px"
|
|
540
|
+
}
|
|
541
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
542
|
+
d: "M6.38 18.7 4 21"
|
|
543
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
544
|
+
d: "M17.64 18.67 20 21"
|
|
545
|
+
}), /*#__PURE__*/React.createElement(motion.path, {
|
|
546
|
+
d: "M9 13h6",
|
|
547
|
+
variants: MINUS_VARIANTS,
|
|
548
|
+
style: {
|
|
549
|
+
transformOrigin: "12px 13px"
|
|
550
|
+
}
|
|
551
|
+
})));
|
|
552
|
+
});
|
|
553
|
+
AlarmMinus.displayName = "AlarmMinus";
|
|
554
|
+
|
|
555
|
+
var FRAME_VARIANTS$1 = {
|
|
556
|
+
idle: {
|
|
557
|
+
rotate: 0,
|
|
558
|
+
x: 0,
|
|
559
|
+
y: 0,
|
|
560
|
+
transition: {
|
|
561
|
+
duration: 0.24,
|
|
562
|
+
ease: "easeOut"
|
|
563
|
+
}
|
|
564
|
+
},
|
|
565
|
+
active: {
|
|
566
|
+
rotate: [0, -0.45, 0.45, -0.3, 0.3, 0],
|
|
567
|
+
x: [0, -0.12, 0.12, -0.08, 0.08, 0],
|
|
568
|
+
y: [0, -0.08, 0.03, -0.05, 0],
|
|
569
|
+
transition: {
|
|
570
|
+
duration: 0.9,
|
|
571
|
+
ease: "easeInOut",
|
|
572
|
+
repeat: Number.POSITIVE_INFINITY
|
|
573
|
+
}
|
|
574
|
+
}
|
|
575
|
+
};
|
|
576
|
+
var BELL_LEFT_VARIANTS$1 = {
|
|
577
|
+
idle: {
|
|
578
|
+
rotate: 0,
|
|
579
|
+
y: 0
|
|
580
|
+
},
|
|
581
|
+
active: {
|
|
582
|
+
rotate: [0, -4.5, -2.5, -4, -2, 0],
|
|
583
|
+
y: [0, -0.14, -0.05, -0.1, 0],
|
|
584
|
+
transition: {
|
|
585
|
+
duration: 0.65,
|
|
586
|
+
ease: "easeInOut",
|
|
587
|
+
repeat: Number.POSITIVE_INFINITY
|
|
588
|
+
}
|
|
589
|
+
}
|
|
590
|
+
};
|
|
591
|
+
var BELL_RIGHT_VARIANTS$1 = {
|
|
592
|
+
idle: {
|
|
593
|
+
rotate: 0,
|
|
594
|
+
y: 0
|
|
595
|
+
},
|
|
596
|
+
active: {
|
|
597
|
+
rotate: [0, 4.5, 2.5, 4, 2, 0],
|
|
598
|
+
y: [0, -0.14, -0.05, -0.1, 0],
|
|
599
|
+
transition: {
|
|
600
|
+
duration: 0.65,
|
|
601
|
+
ease: "easeInOut",
|
|
602
|
+
repeat: Number.POSITIVE_INFINITY
|
|
603
|
+
}
|
|
604
|
+
}
|
|
605
|
+
};
|
|
606
|
+
var SLASH_VARIANTS = {
|
|
607
|
+
idle: {
|
|
608
|
+
pathLength: 1,
|
|
609
|
+
pathOffset: 0,
|
|
610
|
+
x: 0,
|
|
611
|
+
y: 0,
|
|
612
|
+
transition: {
|
|
613
|
+
duration: 0.2,
|
|
614
|
+
ease: "easeOut"
|
|
615
|
+
}
|
|
616
|
+
},
|
|
617
|
+
active: {
|
|
618
|
+
pathLength: [0, 1, 1],
|
|
619
|
+
pathOffset: [1, 0, 0],
|
|
620
|
+
x: [-0.7, 0, 0],
|
|
621
|
+
y: [-0.7, 0, 0],
|
|
622
|
+
transition: {
|
|
623
|
+
duration: 1,
|
|
624
|
+
ease: "easeInOut",
|
|
625
|
+
repeat: Number.POSITIVE_INFINITY,
|
|
626
|
+
repeatDelay: 0.2
|
|
627
|
+
}
|
|
628
|
+
}
|
|
629
|
+
};
|
|
630
|
+
var AlarmOff = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
631
|
+
var _b = _a.color,
|
|
632
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
633
|
+
_c = _a.size,
|
|
634
|
+
size = _c === void 0 ? 24 : _c,
|
|
635
|
+
_d = _a.strokeWidth,
|
|
636
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
637
|
+
onMouseEnter = _a.onMouseEnter,
|
|
638
|
+
onMouseLeave = _a.onMouseLeave,
|
|
639
|
+
onFocus = _a.onFocus,
|
|
640
|
+
onBlur = _a.onBlur,
|
|
641
|
+
rest = __rest(_a, ["color", "size", "strokeWidth", "onMouseEnter", "onMouseLeave", "onFocus", "onBlur"]);
|
|
642
|
+
var _e = React.useState(false),
|
|
643
|
+
isActive = _e[0],
|
|
644
|
+
setIsActive = _e[1];
|
|
645
|
+
var handleMouseEnter = function handleMouseEnter(e) {
|
|
646
|
+
setIsActive(true);
|
|
647
|
+
onMouseEnter === null || onMouseEnter === void 0 ? void 0 : onMouseEnter(e);
|
|
648
|
+
};
|
|
649
|
+
var handleMouseLeave = function handleMouseLeave(e) {
|
|
650
|
+
setIsActive(false);
|
|
651
|
+
onMouseLeave === null || onMouseLeave === void 0 ? void 0 : onMouseLeave(e);
|
|
652
|
+
};
|
|
653
|
+
var handleFocus = function handleFocus(e) {
|
|
654
|
+
setIsActive(true);
|
|
655
|
+
onFocus === null || onFocus === void 0 ? void 0 : onFocus(e);
|
|
656
|
+
};
|
|
657
|
+
var handleBlur = function handleBlur(e) {
|
|
658
|
+
setIsActive(false);
|
|
659
|
+
onBlur === null || onBlur === void 0 ? void 0 : onBlur(e);
|
|
660
|
+
};
|
|
661
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
662
|
+
ref: ref,
|
|
663
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
664
|
+
width: size,
|
|
665
|
+
height: size,
|
|
666
|
+
viewBox: "0 0 24 24",
|
|
667
|
+
fill: "none",
|
|
668
|
+
stroke: color,
|
|
669
|
+
strokeWidth: strokeWidth,
|
|
670
|
+
strokeLinecap: "round",
|
|
671
|
+
strokeLinejoin: "round",
|
|
672
|
+
onMouseEnter: handleMouseEnter,
|
|
673
|
+
onMouseLeave: handleMouseLeave,
|
|
674
|
+
onFocus: handleFocus,
|
|
675
|
+
onBlur: handleBlur
|
|
676
|
+
}, rest), /*#__PURE__*/React.createElement(motion.g, {
|
|
677
|
+
initial: "idle",
|
|
678
|
+
animate: isActive ? "active" : "idle",
|
|
679
|
+
variants: FRAME_VARIANTS$1,
|
|
680
|
+
style: {
|
|
681
|
+
transformOrigin: "12px 13px"
|
|
682
|
+
}
|
|
683
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
684
|
+
d: "M6.87 6.87a8 8 0 1 0 11.26 11.26"
|
|
685
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
686
|
+
d: "M19.9 14.25a8 8 0 0 0-9.15-9.15"
|
|
687
|
+
}), /*#__PURE__*/React.createElement(motion.path, {
|
|
688
|
+
d: "m22 6-3-3",
|
|
689
|
+
variants: BELL_RIGHT_VARIANTS$1,
|
|
690
|
+
style: {
|
|
691
|
+
transformOrigin: "19px 3px"
|
|
692
|
+
}
|
|
693
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
694
|
+
d: "M6.26 18.67 4 21"
|
|
695
|
+
}), /*#__PURE__*/React.createElement(motion.path, {
|
|
696
|
+
d: "m2 2 20 20",
|
|
697
|
+
variants: SLASH_VARIANTS,
|
|
698
|
+
style: {
|
|
699
|
+
transformOrigin: "12px 12px"
|
|
700
|
+
}
|
|
701
|
+
}), /*#__PURE__*/React.createElement(motion.path, {
|
|
702
|
+
d: "M4 4 2 6",
|
|
703
|
+
variants: BELL_LEFT_VARIANTS$1,
|
|
704
|
+
style: {
|
|
705
|
+
transformOrigin: "4px 4px"
|
|
706
|
+
}
|
|
707
|
+
})));
|
|
708
|
+
});
|
|
709
|
+
AlarmOff.displayName = "AlarmOff";
|
|
710
|
+
|
|
711
|
+
var FRAME_VARIANTS = {
|
|
712
|
+
idle: {
|
|
713
|
+
rotate: 0,
|
|
714
|
+
x: 0,
|
|
715
|
+
y: 0,
|
|
716
|
+
scale: 1,
|
|
717
|
+
transition: {
|
|
718
|
+
duration: 0.24,
|
|
719
|
+
ease: "easeOut"
|
|
720
|
+
}
|
|
721
|
+
},
|
|
722
|
+
active: {
|
|
723
|
+
rotate: [0, -0.9, 0.9, -0.55, 0.55, 0],
|
|
724
|
+
x: [0, -0.2, 0.2, -0.14, 0.14, 0],
|
|
725
|
+
y: [0, -0.12, 0.05, -0.07, 0],
|
|
726
|
+
scale: [1, 1.012, 1],
|
|
727
|
+
transition: {
|
|
728
|
+
duration: 0.8,
|
|
729
|
+
ease: "easeInOut",
|
|
730
|
+
repeat: Number.POSITIVE_INFINITY
|
|
731
|
+
}
|
|
732
|
+
}
|
|
733
|
+
};
|
|
734
|
+
var BELL_LEFT_VARIANTS = {
|
|
735
|
+
idle: {
|
|
736
|
+
rotate: 0,
|
|
737
|
+
y: 0
|
|
738
|
+
},
|
|
739
|
+
active: {
|
|
740
|
+
rotate: [0, -7, -4, -6, -3, 0],
|
|
741
|
+
y: [0, -0.28, -0.1, -0.2, 0],
|
|
742
|
+
transition: {
|
|
743
|
+
duration: 0.54,
|
|
744
|
+
ease: "easeInOut",
|
|
745
|
+
repeat: Number.POSITIVE_INFINITY
|
|
746
|
+
}
|
|
747
|
+
}
|
|
748
|
+
};
|
|
749
|
+
var BELL_RIGHT_VARIANTS = {
|
|
750
|
+
idle: {
|
|
751
|
+
rotate: 0,
|
|
752
|
+
y: 0
|
|
753
|
+
},
|
|
754
|
+
active: {
|
|
755
|
+
rotate: [0, 7, 4, 6, 3, 0],
|
|
756
|
+
y: [0, -0.28, -0.1, -0.2, 0],
|
|
757
|
+
transition: {
|
|
758
|
+
duration: 0.54,
|
|
759
|
+
ease: "easeInOut",
|
|
760
|
+
repeat: Number.POSITIVE_INFINITY
|
|
761
|
+
}
|
|
762
|
+
}
|
|
763
|
+
};
|
|
764
|
+
var PLUS_GROUP_VARIANTS = {
|
|
765
|
+
idle: {
|
|
766
|
+
scale: 1,
|
|
767
|
+
rotate: 0,
|
|
768
|
+
transition: {
|
|
769
|
+
duration: 0.2,
|
|
770
|
+
ease: "easeOut"
|
|
771
|
+
}
|
|
772
|
+
},
|
|
773
|
+
active: {
|
|
774
|
+
scale: [0.88, 1.08, 1],
|
|
775
|
+
rotate: [-4, 0, 0],
|
|
776
|
+
transition: {
|
|
777
|
+
duration: 0.82,
|
|
778
|
+
ease: "easeInOut",
|
|
779
|
+
repeat: Number.POSITIVE_INFINITY,
|
|
780
|
+
repeatDelay: 0.08
|
|
781
|
+
}
|
|
782
|
+
}
|
|
783
|
+
};
|
|
784
|
+
var PLUS_STROKE_VARIANTS = {
|
|
785
|
+
idle: {
|
|
786
|
+
pathLength: 1,
|
|
787
|
+
pathOffset: 0,
|
|
788
|
+
transition: {
|
|
789
|
+
duration: 0.2,
|
|
790
|
+
ease: "easeOut"
|
|
791
|
+
}
|
|
792
|
+
},
|
|
793
|
+
active: {
|
|
794
|
+
pathLength: [0.16, 1, 1],
|
|
795
|
+
pathOffset: [0.84, 0, 0],
|
|
796
|
+
transition: {
|
|
797
|
+
duration: 0.82,
|
|
798
|
+
ease: "easeInOut",
|
|
799
|
+
repeat: Number.POSITIVE_INFINITY,
|
|
800
|
+
repeatDelay: 0.08
|
|
801
|
+
}
|
|
802
|
+
}
|
|
803
|
+
};
|
|
804
|
+
var AlarmPlus = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
805
|
+
var _b = _a.color,
|
|
806
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
807
|
+
_c = _a.size,
|
|
808
|
+
size = _c === void 0 ? 24 : _c,
|
|
809
|
+
_d = _a.strokeWidth,
|
|
810
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
811
|
+
onMouseEnter = _a.onMouseEnter,
|
|
812
|
+
onMouseLeave = _a.onMouseLeave,
|
|
813
|
+
onFocus = _a.onFocus,
|
|
814
|
+
onBlur = _a.onBlur,
|
|
815
|
+
rest = __rest(_a, ["color", "size", "strokeWidth", "onMouseEnter", "onMouseLeave", "onFocus", "onBlur"]);
|
|
816
|
+
var _e = React.useState(false),
|
|
817
|
+
isActive = _e[0],
|
|
818
|
+
setIsActive = _e[1];
|
|
819
|
+
var handleMouseEnter = function handleMouseEnter(e) {
|
|
820
|
+
setIsActive(true);
|
|
821
|
+
onMouseEnter === null || onMouseEnter === void 0 ? void 0 : onMouseEnter(e);
|
|
822
|
+
};
|
|
823
|
+
var handleMouseLeave = function handleMouseLeave(e) {
|
|
824
|
+
setIsActive(false);
|
|
825
|
+
onMouseLeave === null || onMouseLeave === void 0 ? void 0 : onMouseLeave(e);
|
|
826
|
+
};
|
|
827
|
+
var handleFocus = function handleFocus(e) {
|
|
828
|
+
setIsActive(true);
|
|
829
|
+
onFocus === null || onFocus === void 0 ? void 0 : onFocus(e);
|
|
830
|
+
};
|
|
831
|
+
var handleBlur = function handleBlur(e) {
|
|
832
|
+
setIsActive(false);
|
|
833
|
+
onBlur === null || onBlur === void 0 ? void 0 : onBlur(e);
|
|
834
|
+
};
|
|
835
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
836
|
+
ref: ref,
|
|
837
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
838
|
+
width: size,
|
|
839
|
+
height: size,
|
|
840
|
+
viewBox: "0 0 24 24",
|
|
841
|
+
fill: "none",
|
|
842
|
+
stroke: color,
|
|
843
|
+
strokeWidth: strokeWidth,
|
|
844
|
+
strokeLinecap: "round",
|
|
845
|
+
strokeLinejoin: "round",
|
|
846
|
+
onMouseEnter: handleMouseEnter,
|
|
847
|
+
onMouseLeave: handleMouseLeave,
|
|
848
|
+
onFocus: handleFocus,
|
|
849
|
+
onBlur: handleBlur
|
|
850
|
+
}, rest), /*#__PURE__*/React.createElement(motion.g, {
|
|
851
|
+
initial: "idle",
|
|
852
|
+
animate: isActive ? "active" : "idle",
|
|
853
|
+
variants: FRAME_VARIANTS,
|
|
854
|
+
style: {
|
|
855
|
+
transformOrigin: "12px 13px"
|
|
856
|
+
}
|
|
857
|
+
}, /*#__PURE__*/React.createElement("circle", {
|
|
858
|
+
cx: "12",
|
|
859
|
+
cy: "13",
|
|
860
|
+
r: "8"
|
|
861
|
+
}), /*#__PURE__*/React.createElement(motion.path, {
|
|
862
|
+
d: "M5 3 2 6",
|
|
863
|
+
variants: BELL_LEFT_VARIANTS,
|
|
864
|
+
style: {
|
|
865
|
+
transformOrigin: "5px 3px"
|
|
866
|
+
}
|
|
867
|
+
}), /*#__PURE__*/React.createElement(motion.path, {
|
|
868
|
+
d: "m22 6-3-3",
|
|
869
|
+
variants: BELL_RIGHT_VARIANTS,
|
|
870
|
+
style: {
|
|
871
|
+
transformOrigin: "19px 3px"
|
|
872
|
+
}
|
|
873
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
874
|
+
d: "M6.38 18.7 4 21"
|
|
875
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
876
|
+
d: "M17.64 18.67 20 21"
|
|
877
|
+
}), /*#__PURE__*/React.createElement(motion.g, {
|
|
878
|
+
variants: PLUS_GROUP_VARIANTS,
|
|
879
|
+
style: {
|
|
880
|
+
transformOrigin: "12px 13px"
|
|
881
|
+
}
|
|
882
|
+
}, /*#__PURE__*/React.createElement(motion.path, {
|
|
883
|
+
d: "M12 10v6",
|
|
884
|
+
variants: PLUS_STROKE_VARIANTS
|
|
885
|
+
}), /*#__PURE__*/React.createElement(motion.path, {
|
|
886
|
+
d: "M9 13h6",
|
|
887
|
+
variants: PLUS_STROKE_VARIANTS
|
|
888
|
+
}))));
|
|
889
|
+
});
|
|
890
|
+
AlarmPlus.displayName = "AlarmPlus";
|
|
891
|
+
|
|
892
|
+
var HOUR_HAND_VARIANTS = {
|
|
893
|
+
idle: {
|
|
894
|
+
rotate: 0,
|
|
895
|
+
transition: {
|
|
896
|
+
duration: 0.2,
|
|
897
|
+
ease: "easeOut"
|
|
898
|
+
}
|
|
899
|
+
},
|
|
900
|
+
active: {
|
|
901
|
+
rotate: 360,
|
|
902
|
+
transition: {
|
|
903
|
+
duration: 24,
|
|
904
|
+
ease: "linear",
|
|
905
|
+
repeat: Number.POSITIVE_INFINITY
|
|
906
|
+
}
|
|
907
|
+
}
|
|
908
|
+
};
|
|
909
|
+
var MINUTE_HAND_VARIANTS = {
|
|
910
|
+
idle: {
|
|
911
|
+
rotate: 0,
|
|
912
|
+
transition: {
|
|
913
|
+
duration: 0.2,
|
|
914
|
+
ease: "easeOut"
|
|
915
|
+
}
|
|
916
|
+
},
|
|
917
|
+
active: {
|
|
918
|
+
rotate: 360,
|
|
919
|
+
transition: {
|
|
920
|
+
duration: 6,
|
|
921
|
+
ease: "linear",
|
|
922
|
+
repeat: Number.POSITIVE_INFINITY
|
|
923
|
+
}
|
|
924
|
+
}
|
|
925
|
+
};
|
|
926
|
+
var Clock = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
927
|
+
var _b = _a.color,
|
|
928
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
929
|
+
_c = _a.size,
|
|
930
|
+
size = _c === void 0 ? 24 : _c,
|
|
931
|
+
_d = _a.strokeWidth,
|
|
932
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
933
|
+
onMouseEnter = _a.onMouseEnter,
|
|
934
|
+
onMouseLeave = _a.onMouseLeave,
|
|
935
|
+
onFocus = _a.onFocus,
|
|
936
|
+
onBlur = _a.onBlur,
|
|
937
|
+
rest = __rest(_a, ["color", "size", "strokeWidth", "onMouseEnter", "onMouseLeave", "onFocus", "onBlur"]);
|
|
938
|
+
var _e = React.useState(false),
|
|
939
|
+
isActive = _e[0],
|
|
940
|
+
setIsActive = _e[1];
|
|
941
|
+
var handleMouseEnter = function handleMouseEnter(e) {
|
|
942
|
+
setIsActive(true);
|
|
943
|
+
onMouseEnter === null || onMouseEnter === void 0 ? void 0 : onMouseEnter(e);
|
|
944
|
+
};
|
|
945
|
+
var handleMouseLeave = function handleMouseLeave(e) {
|
|
946
|
+
setIsActive(false);
|
|
947
|
+
onMouseLeave === null || onMouseLeave === void 0 ? void 0 : onMouseLeave(e);
|
|
948
|
+
};
|
|
949
|
+
var handleFocus = function handleFocus(e) {
|
|
950
|
+
setIsActive(true);
|
|
951
|
+
onFocus === null || onFocus === void 0 ? void 0 : onFocus(e);
|
|
952
|
+
};
|
|
953
|
+
var handleBlur = function handleBlur(e) {
|
|
954
|
+
setIsActive(false);
|
|
955
|
+
onBlur === null || onBlur === void 0 ? void 0 : onBlur(e);
|
|
956
|
+
};
|
|
957
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
958
|
+
ref: ref,
|
|
959
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
960
|
+
width: size,
|
|
961
|
+
height: size,
|
|
962
|
+
viewBox: "0 0 24 24",
|
|
963
|
+
fill: "none",
|
|
964
|
+
stroke: color,
|
|
965
|
+
strokeWidth: strokeWidth,
|
|
966
|
+
strokeLinecap: "round",
|
|
967
|
+
strokeLinejoin: "round",
|
|
968
|
+
onMouseEnter: handleMouseEnter,
|
|
969
|
+
onMouseLeave: handleMouseLeave,
|
|
970
|
+
onFocus: handleFocus,
|
|
971
|
+
onBlur: handleBlur
|
|
972
|
+
}, rest), /*#__PURE__*/React.createElement("circle", {
|
|
973
|
+
cx: "12",
|
|
974
|
+
cy: "12",
|
|
975
|
+
r: "10"
|
|
976
|
+
}), /*#__PURE__*/React.createElement(motion.line, {
|
|
977
|
+
x1: "12",
|
|
978
|
+
y1: "12",
|
|
979
|
+
x2: "12",
|
|
980
|
+
y2: "6",
|
|
981
|
+
initial: "idle",
|
|
982
|
+
animate: isActive ? "active" : "idle",
|
|
983
|
+
variants: HOUR_HAND_VARIANTS,
|
|
984
|
+
style: {
|
|
985
|
+
transformBox: "view-box",
|
|
986
|
+
transformOrigin: "12px 12px"
|
|
987
|
+
}
|
|
988
|
+
}), /*#__PURE__*/React.createElement(motion.line, {
|
|
989
|
+
x1: "12",
|
|
990
|
+
y1: "12",
|
|
991
|
+
x2: "16",
|
|
992
|
+
y2: "14",
|
|
993
|
+
initial: "idle",
|
|
994
|
+
animate: isActive ? "active" : "idle",
|
|
995
|
+
variants: MINUTE_HAND_VARIANTS,
|
|
996
|
+
style: {
|
|
997
|
+
transformBox: "view-box",
|
|
998
|
+
transformOrigin: "12px 12px"
|
|
999
|
+
}
|
|
1000
|
+
}));
|
|
1001
|
+
});
|
|
1002
|
+
Clock.displayName = "Clock";
|
|
1003
|
+
|
|
1004
|
+
// Alarm Icons
|
|
1005
|
+
|
|
1006
|
+
export { Alarm, AlarmCheck, AlarmMinus, AlarmOff, AlarmPlus, Clock, Alarm as default };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
3
|
+
color?: string;
|
|
4
|
+
size?: string | number;
|
|
5
|
+
strokeWidth?: string | number;
|
|
6
|
+
}
|
|
7
|
+
declare const TwitterNew: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
export default TwitterNew;
|
package/build/index.d.ts
CHANGED
|
@@ -142,6 +142,7 @@ export { default as Twitch } from "./icons/social/Twitch";
|
|
|
142
142
|
export { default as Twitter } from "./icons/social/Twitter";
|
|
143
143
|
export { default as WhatsApp } from "./icons/social/WhatsApp";
|
|
144
144
|
export { default as YouTube } from "./icons/social/YouTube";
|
|
145
|
+
export { default as TwitterNew } from "./icons/social/TwitterNew";
|
|
145
146
|
export { default as Alarm } from "./icons/alarm/Alarm";
|
|
146
147
|
export { default as AlarmCheck } from "./icons/alarm/AlarmCheck";
|
|
147
148
|
export { default as AlarmMinus } from "./icons/alarm/AlarmMinus";
|
package/build/index.js
CHANGED
|
@@ -4234,6 +4234,31 @@ var YouTube = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
4234
4234
|
});
|
|
4235
4235
|
YouTube.displayName = "YouTube";
|
|
4236
4236
|
|
|
4237
|
+
var TwitterNew = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
4238
|
+
var _b = _a.color,
|
|
4239
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
4240
|
+
_c = _a.size,
|
|
4241
|
+
size = _c === void 0 ? 24 : _c,
|
|
4242
|
+
_d = _a.strokeWidth,
|
|
4243
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
4244
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
4245
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
4246
|
+
ref: ref,
|
|
4247
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4248
|
+
width: size,
|
|
4249
|
+
height: size,
|
|
4250
|
+
viewBox: "0 0 24 24",
|
|
4251
|
+
fill: color,
|
|
4252
|
+
stroke: "none",
|
|
4253
|
+
strokeWidth: strokeWidth,
|
|
4254
|
+
strokeLinecap: "round",
|
|
4255
|
+
strokeLinejoin: "round"
|
|
4256
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
4257
|
+
d: "M12.6.75h2.454l-5.36 6.142L16 15.25h-4.937l-3.867-5.07-4.425 5.07H.316l5.733-6.57L0 .75h5.063l3.495 4.633L12.601.75Zm-.86 13.028h1.36L4.323 2.145H2.865z"
|
|
4258
|
+
}));
|
|
4259
|
+
});
|
|
4260
|
+
TwitterNew.displayName = "TwitterNew";
|
|
4261
|
+
|
|
4237
4262
|
var Alarm = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
4238
4263
|
var _b = _a.color,
|
|
4239
4264
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -11493,4 +11518,4 @@ var ZapOff = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
11493
11518
|
});
|
|
11494
11519
|
ZapOff.displayName = "ZapOff";
|
|
11495
11520
|
|
|
11496
|
-
export { AArrowDown, AArrowUp, Accessibility, Airplane, AirplaneLandLeft, AirplaneLandRight, AirplaneMode, AirplaneModeOff, AirplaneSeat, AirplaneTakeOffLeft, AirplaneTakeOffRight, Airplay, Alarm, AlarmCheck, AlarmMinus, AlarmOff, AlarmPlus, AlertCircle, AlertOctagon, AlertTriangle, AlignCenter, AlignJustify, AlignLeft, AlignRight, Anchor, Aperture, AppWindow, AppWindowMac, Apple, Archive, ArchiveRestore, ArrowDown, ArrowDownBig, ArrowDownBigDash, ArrowDownCircle, ArrowDownLeft, ArrowDownRight, ArrowLeft, ArrowLeftBig, ArrowLeftBigDash, ArrowLeftCircle, ArrowRight, ArrowRightBig, ArrowRightBigDash, ArrowRightCircle, ArrowUp, ArrowUpBig, ArrowUpBigDash, ArrowUpCircle, ArrowUpLeft, ArrowUpRight, Award, BarChart, BarChart2, Battery, BatteryCharging, Bell, BellOff, Bluetooth, Book, BookOpen, Bookmark, Bot, BotOff, BotSquare, Box, Briefcase, Calendar, Camera, CameraOff, Cast, Check, CheckCircle, CheckSquare, ChevronDown, ChevronDown2, ChevronLeft, ChevronLeft2, ChevronRight, ChevronRight2, ChevronUp, ChevronUp2, Chrome, Circle, Clipboard, Clock, Cloud, CloudDrizzle, CloudLightning, CloudOff, CloudRain, CloudSnow, Cloudflare, Code, Codepen, Codesandbox, Coffee, Columns, Command, Compass, Cookie, Copy, CornerDownLeft, CornerDownRight, CornerLeftDown, CornerLeftUp, CornerRightDown, CornerRightUp, CornerUpLeft, CornerUpRight, Cpu, CreditCard, Credly, Crop, Crosshair, Database, Delete, Deno, Disc, Discord, Divide, DivideCircle, DivideSquare, Dollar, Download, DownloadCloud, Dribbble, Droplet, DropletDouble, DropletOff, Edit, Edit2, Edit3, Email, Euro, ExternalLink, Eye, EyeOff, Facebook, FastForward, Feather, Figma, File, FileMinus, FilePlus, FileText, Film, Filter, Flag, Folder, FolderMinus, FolderPlus, Framer, Frown, Gift, GitBranch, GitCommit, GitHub, GitLab, GitMerge, GitPullRequest, Globe, GoLang, Google, GraphStats, Grid, HTML, HardDrive, Hash, Headphones, Heart, HelpCircle, Hexagon, House, Image, ImageDown, ImageMinus, ImageOff, ImagePlay, ImagePlus, ImageScaleDash, ImageUp, Inbox, Info, Instagram, Italic, JavaScript, Key, Layers, Layout, LifeBuoy, Link, Link2, LinkedIn, List, Loader, Lock, LogIn, LogOut, Mail, Map, MapPin, Maximize, Maximize2, Meh, Menu, MessageCircle, MessageSquare, Mic, MicOff, Minimize, Minimize2, Minus, MinusCircle, MinusSquare, Monitor, Moon, MoreHorizontal, MoreVertical, MousePointer, Move, Music, NPMJs, Navigation, Navigation2, NodeJs, Octagon, Package, Paperclip, Pause, PauseCircle, PayPal, PenTool, Percent, Phone, PhoneCall, PhoneForwarded, PhoneIncoming, PhoneMissed, PhoneOff, PhoneOutgoing, PieChart, Play, PlayCircle, Plus, PlusCircle, PlusSquare, Pocket, Power, Printer, Python, RSS, Radio, ReactJs, RefreshCcw, RefreshCw, Repeat, Rewind, RotateCcw, RotateCw, Save, Scissors, Search, Send, Server, Settings, Share, Share2, Shield, ShieldOff, ShoppingBag, ShoppingCart, Shuffle, Sidebar, SkipBack, SkipForward, Slack, Slash, Sliders, Smartphone, Smile, SoundCloud, Sparkles, Sparkles2, Speaker, Spotify, Square, Star, StopCircle, Sun, Sunrise, Sunset, TV, Table, Tablet, Tag, TailwindCSS, Target, Terminal, TextDown, TextSize, TextUp, Thermometer, ThumbsDown, ThumbsUp, ToggleLeft, ToggleRight, Tool, Trash, Trash2, Trello, TrendingDown, TrendingUp, Triangle, Truck, Twitch, Twitter, Type, TypeScript, Umbrella, Underline, Unlock, Upload, UploadCloud, User, UserCheck, UserMinus, UserPlus, UserX, Users, Video, VideoOff, Voicemail, Volume, Volume2, Volume3, VolumeX, WandSparkles, Watch, WhatsApp, Wifi, WifiOff, Wind, X, XCircle, XOctagon, XSquare, YouTube, Zap, ZapOff };
|
|
11521
|
+
export { AArrowDown, AArrowUp, Accessibility, Airplane, AirplaneLandLeft, AirplaneLandRight, AirplaneMode, AirplaneModeOff, AirplaneSeat, AirplaneTakeOffLeft, AirplaneTakeOffRight, Airplay, Alarm, AlarmCheck, AlarmMinus, AlarmOff, AlarmPlus, AlertCircle, AlertOctagon, AlertTriangle, AlignCenter, AlignJustify, AlignLeft, AlignRight, Anchor, Aperture, AppWindow, AppWindowMac, Apple, Archive, ArchiveRestore, ArrowDown, ArrowDownBig, ArrowDownBigDash, ArrowDownCircle, ArrowDownLeft, ArrowDownRight, ArrowLeft, ArrowLeftBig, ArrowLeftBigDash, ArrowLeftCircle, ArrowRight, ArrowRightBig, ArrowRightBigDash, ArrowRightCircle, ArrowUp, ArrowUpBig, ArrowUpBigDash, ArrowUpCircle, ArrowUpLeft, ArrowUpRight, Award, BarChart, BarChart2, Battery, BatteryCharging, Bell, BellOff, Bluetooth, Book, BookOpen, Bookmark, Bot, BotOff, BotSquare, Box, Briefcase, Calendar, Camera, CameraOff, Cast, Check, CheckCircle, CheckSquare, ChevronDown, ChevronDown2, ChevronLeft, ChevronLeft2, ChevronRight, ChevronRight2, ChevronUp, ChevronUp2, Chrome, Circle, Clipboard, Clock, Cloud, CloudDrizzle, CloudLightning, CloudOff, CloudRain, CloudSnow, Cloudflare, Code, Codepen, Codesandbox, Coffee, Columns, Command, Compass, Cookie, Copy, CornerDownLeft, CornerDownRight, CornerLeftDown, CornerLeftUp, CornerRightDown, CornerRightUp, CornerUpLeft, CornerUpRight, Cpu, CreditCard, Credly, Crop, Crosshair, Database, Delete, Deno, Disc, Discord, Divide, DivideCircle, DivideSquare, Dollar, Download, DownloadCloud, Dribbble, Droplet, DropletDouble, DropletOff, Edit, Edit2, Edit3, Email, Euro, ExternalLink, Eye, EyeOff, Facebook, FastForward, Feather, Figma, File, FileMinus, FilePlus, FileText, Film, Filter, Flag, Folder, FolderMinus, FolderPlus, Framer, Frown, Gift, GitBranch, GitCommit, GitHub, GitLab, GitMerge, GitPullRequest, Globe, GoLang, Google, GraphStats, Grid, HTML, HardDrive, Hash, Headphones, Heart, HelpCircle, Hexagon, House, Image, ImageDown, ImageMinus, ImageOff, ImagePlay, ImagePlus, ImageScaleDash, ImageUp, Inbox, Info, Instagram, Italic, JavaScript, Key, Layers, Layout, LifeBuoy, Link, Link2, LinkedIn, List, Loader, Lock, LogIn, LogOut, Mail, Map, MapPin, Maximize, Maximize2, Meh, Menu, MessageCircle, MessageSquare, Mic, MicOff, Minimize, Minimize2, Minus, MinusCircle, MinusSquare, Monitor, Moon, MoreHorizontal, MoreVertical, MousePointer, Move, Music, NPMJs, Navigation, Navigation2, NodeJs, Octagon, Package, Paperclip, Pause, PauseCircle, PayPal, PenTool, Percent, Phone, PhoneCall, PhoneForwarded, PhoneIncoming, PhoneMissed, PhoneOff, PhoneOutgoing, PieChart, Play, PlayCircle, Plus, PlusCircle, PlusSquare, Pocket, Power, Printer, Python, RSS, Radio, ReactJs, RefreshCcw, RefreshCw, Repeat, Rewind, RotateCcw, RotateCw, Save, Scissors, Search, Send, Server, Settings, Share, Share2, Shield, ShieldOff, ShoppingBag, ShoppingCart, Shuffle, Sidebar, SkipBack, SkipForward, Slack, Slash, Sliders, Smartphone, Smile, SoundCloud, Sparkles, Sparkles2, Speaker, Spotify, Square, Star, StopCircle, Sun, Sunrise, Sunset, TV, Table, Tablet, Tag, TailwindCSS, Target, Terminal, TextDown, TextSize, TextUp, Thermometer, ThumbsDown, ThumbsUp, ToggleLeft, ToggleRight, Tool, Trash, Trash2, Trello, TrendingDown, TrendingUp, Triangle, Truck, Twitch, Twitter, TwitterNew, Type, TypeScript, Umbrella, Underline, Unlock, Upload, UploadCloud, User, UserCheck, UserMinus, UserPlus, UserX, Users, Video, VideoOff, Voicemail, Volume, Volume2, Volume3, VolumeX, WandSparkles, Watch, WhatsApp, Wifi, WifiOff, Wind, X, XCircle, XOctagon, XSquare, YouTube, Zap, ZapOff };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"private": false,
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"name": "@deemlol/next-icons",
|
|
6
6
|
"description": "An open-source icon library for React and Next.js that is lightweight, designed for simplicity and seamless integration. Each icon is designed on a 24x24 pixels grid.",
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
"format:write": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\""
|
|
16
16
|
},
|
|
17
17
|
"peerDependencies": {
|
|
18
|
+
"framer-motion": "^12.0.0",
|
|
18
19
|
"react": "^19.0.0"
|
|
19
20
|
},
|
|
20
21
|
"devDependencies": {
|
|
@@ -31,11 +32,24 @@
|
|
|
31
32
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
32
33
|
"eslint-plugin-react": "^7.37.5",
|
|
33
34
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
35
|
+
"framer-motion": "^12.38.0",
|
|
34
36
|
"prettier-eslint": "^16.4.2",
|
|
35
37
|
"rollup": "^4.59.0",
|
|
36
38
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
37
39
|
"typescript": "^5.9.3"
|
|
38
40
|
},
|
|
41
|
+
"exports": {
|
|
42
|
+
".": {
|
|
43
|
+
"types": "./build/index.d.ts",
|
|
44
|
+
"import": "./build/index.js",
|
|
45
|
+
"default": "./build/index.js"
|
|
46
|
+
},
|
|
47
|
+
"./animated": {
|
|
48
|
+
"types": "./build/animated/index.d.ts",
|
|
49
|
+
"import": "./build/animated/index.js",
|
|
50
|
+
"default": "./build/animated/index.js"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
39
53
|
"keywords": [
|
|
40
54
|
"react icons",
|
|
41
55
|
"nextjs icons",
|