@deemlol/next-icons 0.1.2 → 0.1.3
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/build/icons/bot.d.ts +21 -0
- package/build/icons/botOff.d.ts +21 -0
- package/build/icons/botSquare.d.ts +21 -0
- package/build/icons/sparkles.d.ts +21 -0
- package/build/icons/sparkles2.d.ts +21 -0
- package/build/icons/wandSparkles.d.ts +21 -0
- package/build/index.d.ts +6 -0
- package/build/index.js +271 -0
- package/package.json +1 -1
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
/******************************************************************************
|
|
3
|
+
Copyright (c) Alexandr Virgovič.
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted.
|
|
7
|
+
|
|
8
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
9
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
10
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
11
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
12
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
13
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
14
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
15
|
+
***************************************************************************** */
|
|
16
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
17
|
+
color?: string;
|
|
18
|
+
size?: string | number;
|
|
19
|
+
}
|
|
20
|
+
declare const Bot: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
21
|
+
export default Bot;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
/******************************************************************************
|
|
3
|
+
Copyright (c) Alexandr Virgovič.
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted.
|
|
7
|
+
|
|
8
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
9
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
10
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
11
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
12
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
13
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
14
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
15
|
+
***************************************************************************** */
|
|
16
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
17
|
+
color?: string;
|
|
18
|
+
size?: string | number;
|
|
19
|
+
}
|
|
20
|
+
declare const BotOff: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
21
|
+
export default BotOff;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
/******************************************************************************
|
|
3
|
+
Copyright (c) Alexandr Virgovič.
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted.
|
|
7
|
+
|
|
8
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
9
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
10
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
11
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
12
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
13
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
14
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
15
|
+
***************************************************************************** */
|
|
16
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
17
|
+
color?: string;
|
|
18
|
+
size?: string | number;
|
|
19
|
+
}
|
|
20
|
+
declare const BotSquare: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
21
|
+
export default BotSquare;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
/******************************************************************************
|
|
3
|
+
Copyright (c) Alexandr Virgovič.
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted.
|
|
7
|
+
|
|
8
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
9
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
10
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
11
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
12
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
13
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
14
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
15
|
+
***************************************************************************** */
|
|
16
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
17
|
+
color?: string;
|
|
18
|
+
size?: string | number;
|
|
19
|
+
}
|
|
20
|
+
declare const Sparkles: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
21
|
+
export default Sparkles;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
/******************************************************************************
|
|
3
|
+
Copyright (c) Alexandr Virgovič.
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted.
|
|
7
|
+
|
|
8
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
9
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
10
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
11
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
12
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
13
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
14
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
15
|
+
***************************************************************************** */
|
|
16
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
17
|
+
color?: string;
|
|
18
|
+
size?: string | number;
|
|
19
|
+
}
|
|
20
|
+
declare const Sparkles2: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
21
|
+
export default Sparkles2;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
/******************************************************************************
|
|
3
|
+
Copyright (c) Alexandr Virgovič.
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted.
|
|
7
|
+
|
|
8
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
9
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
10
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
11
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
12
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
13
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
14
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
15
|
+
***************************************************************************** */
|
|
16
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
17
|
+
color?: string;
|
|
18
|
+
size?: string | number;
|
|
19
|
+
}
|
|
20
|
+
declare const WandSparkles: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
21
|
+
export default WandSparkles;
|
package/build/index.d.ts
CHANGED
|
@@ -47,6 +47,9 @@ export { default as Bluetooth } from "./icons/bluetooth";
|
|
|
47
47
|
export { default as Book } from "./icons/book";
|
|
48
48
|
export { default as Bookmark } from "./icons/bookmark";
|
|
49
49
|
export { default as BookOpen } from "./icons/bookOpen";
|
|
50
|
+
export { default as Bot } from "./icons/bot";
|
|
51
|
+
export { default as BotOff } from "./icons/botOff";
|
|
52
|
+
export { default as BotSquare } from "./icons/botSquare";
|
|
50
53
|
export { default as Box } from "./icons/box";
|
|
51
54
|
export { default as Briefcase } from "./icons/briefcase";
|
|
52
55
|
export { default as Calendar } from "./icons/calendar";
|
|
@@ -238,6 +241,8 @@ export { default as Slash } from "./icons/slash";
|
|
|
238
241
|
export { default as Sliders } from "./icons/sliders";
|
|
239
242
|
export { default as Smartphone } from "./icons/smartphone";
|
|
240
243
|
export { default as Smile } from "./icons/smile";
|
|
244
|
+
export { default as Sparkles } from "./icons/sparkles";
|
|
245
|
+
export { default as Sparkles2 } from "./icons/sparkles2";
|
|
241
246
|
export { default as Speaker } from "./icons/speaker";
|
|
242
247
|
export { default as Square } from "./icons/square";
|
|
243
248
|
export { default as Star } from "./icons/star";
|
|
@@ -285,6 +290,7 @@ export { default as Volume } from "./icons/volume";
|
|
|
285
290
|
export { default as Volume2 } from "./icons/volume2";
|
|
286
291
|
export { default as Volume3 } from "./icons/volume3";
|
|
287
292
|
export { default as VolumeX } from "./icons/volumeX";
|
|
293
|
+
export { default as WandSparkles } from "./icons/wandSparkles";
|
|
288
294
|
export { default as Watch } from "./icons/watch";
|
|
289
295
|
export { default as Wifi } from "./icons/wifi";
|
|
290
296
|
export { default as WifiOff } from "./icons/wifiOff";
|
package/build/index.js
CHANGED
|
@@ -1437,6 +1437,148 @@ var BookOpen = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
1437
1437
|
});
|
|
1438
1438
|
BookOpen.displayName = "BookOpen";
|
|
1439
1439
|
|
|
1440
|
+
var Bot = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
1441
|
+
var _b = _a.color,
|
|
1442
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
1443
|
+
_c = _a.size,
|
|
1444
|
+
size = _c === void 0 ? 24 : _c,
|
|
1445
|
+
rest = __rest(_a, ["color", "size"]);
|
|
1446
|
+
return /*#__PURE__*/ React.createElement(
|
|
1447
|
+
"svg",
|
|
1448
|
+
__assign(
|
|
1449
|
+
{
|
|
1450
|
+
ref: ref,
|
|
1451
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1452
|
+
width: size,
|
|
1453
|
+
height: size,
|
|
1454
|
+
viewBox: "0 0 24 24",
|
|
1455
|
+
fill: "none",
|
|
1456
|
+
stroke: color,
|
|
1457
|
+
strokeWidth: "2",
|
|
1458
|
+
strokeLinecap: "round",
|
|
1459
|
+
strokeLinejoin: "round"
|
|
1460
|
+
},
|
|
1461
|
+
rest
|
|
1462
|
+
),
|
|
1463
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1464
|
+
d: "M12 8V4H8"
|
|
1465
|
+
}),
|
|
1466
|
+
/*#__PURE__*/ React.createElement("rect", {
|
|
1467
|
+
width: "16",
|
|
1468
|
+
height: "12",
|
|
1469
|
+
x: "4",
|
|
1470
|
+
y: "8",
|
|
1471
|
+
rx: "2"
|
|
1472
|
+
}),
|
|
1473
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1474
|
+
d: "M2 14h2"
|
|
1475
|
+
}),
|
|
1476
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1477
|
+
d: "M20 14h2"
|
|
1478
|
+
}),
|
|
1479
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1480
|
+
d: "M15 13v2"
|
|
1481
|
+
}),
|
|
1482
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1483
|
+
d: "M9 13v2"
|
|
1484
|
+
})
|
|
1485
|
+
);
|
|
1486
|
+
});
|
|
1487
|
+
Bot.displayName = "Bot";
|
|
1488
|
+
|
|
1489
|
+
var BotOff = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
1490
|
+
var _b = _a.color,
|
|
1491
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
1492
|
+
_c = _a.size,
|
|
1493
|
+
size = _c === void 0 ? 24 : _c,
|
|
1494
|
+
rest = __rest(_a, ["color", "size"]);
|
|
1495
|
+
return /*#__PURE__*/ React.createElement(
|
|
1496
|
+
"svg",
|
|
1497
|
+
__assign(
|
|
1498
|
+
{
|
|
1499
|
+
ref: ref,
|
|
1500
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1501
|
+
width: size,
|
|
1502
|
+
height: size,
|
|
1503
|
+
viewBox: "0 0 24 24",
|
|
1504
|
+
fill: "none",
|
|
1505
|
+
stroke: color,
|
|
1506
|
+
strokeWidth: "2",
|
|
1507
|
+
strokeLinecap: "round",
|
|
1508
|
+
strokeLinejoin: "round"
|
|
1509
|
+
},
|
|
1510
|
+
rest
|
|
1511
|
+
),
|
|
1512
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1513
|
+
d: "M13.67 8H18a2 2 0 0 1 2 2v4.33"
|
|
1514
|
+
}),
|
|
1515
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1516
|
+
d: "M2 14h2"
|
|
1517
|
+
}),
|
|
1518
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1519
|
+
d: "M20 14h2"
|
|
1520
|
+
}),
|
|
1521
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1522
|
+
d: "M22 22 2 2"
|
|
1523
|
+
}),
|
|
1524
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1525
|
+
d: "M8 8H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 1.414-.586"
|
|
1526
|
+
}),
|
|
1527
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1528
|
+
d: "M9 13v2"
|
|
1529
|
+
}),
|
|
1530
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1531
|
+
d: "M9.67 4H12v2.33"
|
|
1532
|
+
})
|
|
1533
|
+
);
|
|
1534
|
+
});
|
|
1535
|
+
BotOff.displayName = "BotOff";
|
|
1536
|
+
|
|
1537
|
+
var BotSquare = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
1538
|
+
var _b = _a.color,
|
|
1539
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
1540
|
+
_c = _a.size,
|
|
1541
|
+
size = _c === void 0 ? 24 : _c,
|
|
1542
|
+
rest = __rest(_a, ["color", "size"]);
|
|
1543
|
+
return /*#__PURE__*/ React.createElement(
|
|
1544
|
+
"svg",
|
|
1545
|
+
__assign(
|
|
1546
|
+
{
|
|
1547
|
+
ref: ref,
|
|
1548
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1549
|
+
width: size,
|
|
1550
|
+
height: size,
|
|
1551
|
+
viewBox: "0 0 24 24",
|
|
1552
|
+
fill: "none",
|
|
1553
|
+
stroke: color,
|
|
1554
|
+
strokeWidth: "2",
|
|
1555
|
+
strokeLinecap: "round",
|
|
1556
|
+
strokeLinejoin: "round"
|
|
1557
|
+
},
|
|
1558
|
+
rest
|
|
1559
|
+
),
|
|
1560
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1561
|
+
d: "M12 6V2H8"
|
|
1562
|
+
}),
|
|
1563
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1564
|
+
d: "m8 18-4 4V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2Z"
|
|
1565
|
+
}),
|
|
1566
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1567
|
+
d: "M2 12h2"
|
|
1568
|
+
}),
|
|
1569
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1570
|
+
d: "M9 11v2"
|
|
1571
|
+
}),
|
|
1572
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1573
|
+
d: "M15 11v2"
|
|
1574
|
+
}),
|
|
1575
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1576
|
+
d: "M20 12h2"
|
|
1577
|
+
})
|
|
1578
|
+
);
|
|
1579
|
+
});
|
|
1580
|
+
BotSquare.displayName = "BotSquare";
|
|
1581
|
+
|
|
1440
1582
|
var Box = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
1441
1583
|
var _b = _a.color,
|
|
1442
1584
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -9008,6 +9150,78 @@ var Smile = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
9008
9150
|
});
|
|
9009
9151
|
Smile.displayName = "Smile";
|
|
9010
9152
|
|
|
9153
|
+
var Sparkles = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
9154
|
+
var _b = _a.color,
|
|
9155
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
9156
|
+
_c = _a.size,
|
|
9157
|
+
size = _c === void 0 ? 24 : _c,
|
|
9158
|
+
rest = __rest(_a, ["color", "size"]);
|
|
9159
|
+
return /*#__PURE__*/ React.createElement(
|
|
9160
|
+
"svg",
|
|
9161
|
+
__assign(
|
|
9162
|
+
{
|
|
9163
|
+
ref: ref,
|
|
9164
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9165
|
+
width: size,
|
|
9166
|
+
height: size,
|
|
9167
|
+
viewBox: "0 0 24 24",
|
|
9168
|
+
fill: "none",
|
|
9169
|
+
stroke: color,
|
|
9170
|
+
strokeWidth: "2",
|
|
9171
|
+
strokeLinecap: "round",
|
|
9172
|
+
strokeLinejoin: "round"
|
|
9173
|
+
},
|
|
9174
|
+
rest
|
|
9175
|
+
),
|
|
9176
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
9177
|
+
d: "M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z"
|
|
9178
|
+
})
|
|
9179
|
+
);
|
|
9180
|
+
});
|
|
9181
|
+
Sparkles.displayName = "Sparkles";
|
|
9182
|
+
|
|
9183
|
+
var Sparkles2 = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
9184
|
+
var _b = _a.color,
|
|
9185
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
9186
|
+
_c = _a.size,
|
|
9187
|
+
size = _c === void 0 ? 24 : _c,
|
|
9188
|
+
rest = __rest(_a, ["color", "size"]);
|
|
9189
|
+
return /*#__PURE__*/ React.createElement(
|
|
9190
|
+
"svg",
|
|
9191
|
+
__assign(
|
|
9192
|
+
{
|
|
9193
|
+
ref: ref,
|
|
9194
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9195
|
+
width: size,
|
|
9196
|
+
height: size,
|
|
9197
|
+
viewBox: "0 0 24 24",
|
|
9198
|
+
fill: "none",
|
|
9199
|
+
stroke: color,
|
|
9200
|
+
strokeWidth: "2",
|
|
9201
|
+
strokeLinecap: "round",
|
|
9202
|
+
strokeLinejoin: "round"
|
|
9203
|
+
},
|
|
9204
|
+
rest
|
|
9205
|
+
),
|
|
9206
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
9207
|
+
d: "M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z"
|
|
9208
|
+
}),
|
|
9209
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
9210
|
+
d: "M20 3v4"
|
|
9211
|
+
}),
|
|
9212
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
9213
|
+
d: "M22 5h-4"
|
|
9214
|
+
}),
|
|
9215
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
9216
|
+
d: "M4 17v2"
|
|
9217
|
+
}),
|
|
9218
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
9219
|
+
d: "M5 18H3"
|
|
9220
|
+
})
|
|
9221
|
+
);
|
|
9222
|
+
});
|
|
9223
|
+
Sparkles2.displayName = "Sparkles2";
|
|
9224
|
+
|
|
9011
9225
|
var Speaker = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
9012
9226
|
var _b = _a.color,
|
|
9013
9227
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -10856,6 +11070,57 @@ var VolumeX = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
10856
11070
|
});
|
|
10857
11071
|
VolumeX.displayName = "VolumeX";
|
|
10858
11072
|
|
|
11073
|
+
var WandSparkles = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
11074
|
+
var _b = _a.color,
|
|
11075
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
11076
|
+
_c = _a.size,
|
|
11077
|
+
size = _c === void 0 ? 24 : _c,
|
|
11078
|
+
rest = __rest(_a, ["color", "size"]);
|
|
11079
|
+
return /*#__PURE__*/ React.createElement(
|
|
11080
|
+
"svg",
|
|
11081
|
+
__assign(
|
|
11082
|
+
{
|
|
11083
|
+
ref: ref,
|
|
11084
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11085
|
+
width: size,
|
|
11086
|
+
height: size,
|
|
11087
|
+
viewBox: "0 0 24 24",
|
|
11088
|
+
fill: "none",
|
|
11089
|
+
stroke: color,
|
|
11090
|
+
strokeWidth: "2",
|
|
11091
|
+
strokeLinecap: "round",
|
|
11092
|
+
strokeLinejoin: "round"
|
|
11093
|
+
},
|
|
11094
|
+
rest
|
|
11095
|
+
),
|
|
11096
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11097
|
+
d: "m21.64 3.64-1.28-1.28a1.21 1.21 0 0 0-1.72 0L2.36 18.64a1.21 1.21 0 0 0 0 1.72l1.28 1.28a1.2 1.2 0 0 0 1.72 0L21.64 5.36a1.2 1.2 0 0 0 0-1.72"
|
|
11098
|
+
}),
|
|
11099
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11100
|
+
d: "m14 7 3 3"
|
|
11101
|
+
}),
|
|
11102
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11103
|
+
d: "M5 6v4"
|
|
11104
|
+
}),
|
|
11105
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11106
|
+
d: "M19 14v4"
|
|
11107
|
+
}),
|
|
11108
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11109
|
+
d: "M10 2v2"
|
|
11110
|
+
}),
|
|
11111
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11112
|
+
d: "M7 8H3"
|
|
11113
|
+
}),
|
|
11114
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11115
|
+
d: "M21 16h-4"
|
|
11116
|
+
}),
|
|
11117
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11118
|
+
d: "M11 3H9"
|
|
11119
|
+
})
|
|
11120
|
+
);
|
|
11121
|
+
});
|
|
11122
|
+
WandSparkles.displayName = "WandSparkles";
|
|
11123
|
+
|
|
10859
11124
|
var Watch = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
10860
11125
|
var _b = _a.color,
|
|
10861
11126
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -11427,6 +11692,9 @@ export {
|
|
|
11427
11692
|
Book,
|
|
11428
11693
|
BookOpen,
|
|
11429
11694
|
Bookmark,
|
|
11695
|
+
Bot,
|
|
11696
|
+
BotOff,
|
|
11697
|
+
BotSquare,
|
|
11430
11698
|
Box,
|
|
11431
11699
|
Briefcase,
|
|
11432
11700
|
Calendar,
|
|
@@ -11618,6 +11886,8 @@ export {
|
|
|
11618
11886
|
Sliders,
|
|
11619
11887
|
Smartphone,
|
|
11620
11888
|
Smile,
|
|
11889
|
+
Sparkles,
|
|
11890
|
+
Sparkles2,
|
|
11621
11891
|
Speaker,
|
|
11622
11892
|
Square,
|
|
11623
11893
|
Star,
|
|
@@ -11665,6 +11935,7 @@ export {
|
|
|
11665
11935
|
Volume2,
|
|
11666
11936
|
Volume3,
|
|
11667
11937
|
VolumeX,
|
|
11938
|
+
WandSparkles,
|
|
11668
11939
|
Watch,
|
|
11669
11940
|
Wifi,
|
|
11670
11941
|
WifiOff,
|
package/package.json
CHANGED