@jis3r/icons 2.5.0 → 2.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/icons/badge-x.svelte +82 -0
- package/dist/icons/badge-x.svelte.d.ts +4 -0
- package/dist/icons/calendar-x-2.svelte +83 -0
- package/dist/icons/calendar-x-2.svelte.d.ts +4 -0
- package/dist/icons/calendar-x.svelte +83 -0
- package/dist/icons/calendar-x.svelte.d.ts +4 -0
- package/dist/icons/circle-x.svelte +80 -0
- package/dist/icons/circle-x.svelte.d.ts +4 -0
- package/dist/icons/file-x-corner.svelte +83 -0
- package/dist/icons/file-x-corner.svelte.d.ts +4 -0
- package/dist/icons/file-x.svelte +83 -0
- package/dist/icons/file-x.svelte.d.ts +4 -0
- package/dist/icons/globe-x.svelte +80 -0
- package/dist/icons/globe-x.svelte.d.ts +4 -0
- package/dist/icons/mail-x.svelte +81 -0
- package/dist/icons/mail-x.svelte.d.ts +4 -0
- package/dist/icons/map-pin-x-inside.svelte +82 -0
- package/dist/icons/map-pin-x-inside.svelte.d.ts +4 -0
- package/dist/icons/map-pin-x.svelte +83 -0
- package/dist/icons/map-pin-x.svelte.d.ts +4 -0
- package/dist/icons/monitor-x.svelte +82 -0
- package/dist/icons/monitor-x.svelte.d.ts +4 -0
- package/dist/icons/octagon-x.svelte +82 -0
- package/dist/icons/octagon-x.svelte.d.ts +4 -0
- package/dist/icons/package-x.svelte +85 -0
- package/dist/icons/package-x.svelte.d.ts +4 -0
- package/dist/icons/search-x.svelte +101 -0
- package/dist/icons/search-x.svelte.d.ts +4 -0
- package/dist/icons/shield-x.svelte +82 -0
- package/dist/icons/shield-x.svelte.d.ts +4 -0
- package/dist/icons/square-x.svelte +80 -0
- package/dist/icons/square-x.svelte.d.ts +4 -0
- package/dist/icons/ticket-x.svelte +82 -0
- package/dist/icons/ticket-x.svelte.d.ts +4 -0
- package/dist/icons/user-round-x.svelte +124 -0
- package/dist/icons/user-round-x.svelte.d.ts +4 -0
- package/dist/icons/volume-x.svelte +82 -0
- package/dist/icons/volume-x.svelte.d.ts +4 -0
- package/dist/index.d.ts +20 -1
- package/dist/index.js +19 -0
- package/package.json +1 -1
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import type { IconProps } from './types.js';
|
|
3
|
+
|
|
4
|
+
let {
|
|
5
|
+
color = 'currentColor',
|
|
6
|
+
size = 24,
|
|
7
|
+
strokeWidth = 2,
|
|
8
|
+
animate = false,
|
|
9
|
+
class: className = ''
|
|
10
|
+
}: IconProps = $props();
|
|
11
|
+
|
|
12
|
+
function handleMouseEnter() {
|
|
13
|
+
if (animate) return;
|
|
14
|
+
animate = true;
|
|
15
|
+
setTimeout(() => {
|
|
16
|
+
animate = false;
|
|
17
|
+
}, 600);
|
|
18
|
+
}
|
|
19
|
+
</script>
|
|
20
|
+
|
|
21
|
+
<div class={className} aria-label="square-x" role="img" onmouseenter={handleMouseEnter}>
|
|
22
|
+
<svg
|
|
23
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
24
|
+
width={size}
|
|
25
|
+
height={size}
|
|
26
|
+
viewBox="0 0 24 24"
|
|
27
|
+
fill="none"
|
|
28
|
+
stroke={color}
|
|
29
|
+
stroke-width={strokeWidth}
|
|
30
|
+
stroke-linecap="round"
|
|
31
|
+
stroke-linejoin="round"
|
|
32
|
+
class="square-x-icon"
|
|
33
|
+
class:animate
|
|
34
|
+
>
|
|
35
|
+
<rect width="18" height="18" x="3" y="3" rx="2" ry="2" />
|
|
36
|
+
<path d="m15 9-6 6" class="diagonal-1" />
|
|
37
|
+
<path d="m9 9 6 6" class="diagonal-2" />
|
|
38
|
+
</svg>
|
|
39
|
+
</div>
|
|
40
|
+
|
|
41
|
+
<style>
|
|
42
|
+
div {
|
|
43
|
+
display: inline-block;
|
|
44
|
+
}
|
|
45
|
+
.square-x-icon {
|
|
46
|
+
overflow: visible;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.diagonal-1,
|
|
50
|
+
.diagonal-2 {
|
|
51
|
+
stroke-dasharray: 8.5;
|
|
52
|
+
stroke-dashoffset: 0;
|
|
53
|
+
transition: stroke-dashoffset 0.15s ease-out;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.square-x-icon.animate .diagonal-1 {
|
|
57
|
+
opacity: 0;
|
|
58
|
+
animation: lineAnimation 0.3s ease-out forwards;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.square-x-icon.animate .diagonal-2 {
|
|
62
|
+
opacity: 0;
|
|
63
|
+
animation: lineAnimation 0.3s ease-out 0.25s forwards;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
@keyframes lineAnimation {
|
|
67
|
+
0% {
|
|
68
|
+
opacity: 0;
|
|
69
|
+
stroke-dashoffset: 8.5;
|
|
70
|
+
}
|
|
71
|
+
15% {
|
|
72
|
+
opacity: 1;
|
|
73
|
+
stroke-dashoffset: 8.5;
|
|
74
|
+
}
|
|
75
|
+
100% {
|
|
76
|
+
opacity: 1;
|
|
77
|
+
stroke-dashoffset: 0;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
</style>
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import type { IconProps } from './types.js';
|
|
3
|
+
|
|
4
|
+
let {
|
|
5
|
+
color = 'currentColor',
|
|
6
|
+
size = 24,
|
|
7
|
+
strokeWidth = 2,
|
|
8
|
+
animate = false,
|
|
9
|
+
class: className = ''
|
|
10
|
+
}: IconProps = $props();
|
|
11
|
+
|
|
12
|
+
function handleMouseEnter() {
|
|
13
|
+
if (animate) return;
|
|
14
|
+
animate = true;
|
|
15
|
+
setTimeout(() => {
|
|
16
|
+
animate = false;
|
|
17
|
+
}, 600);
|
|
18
|
+
}
|
|
19
|
+
</script>
|
|
20
|
+
|
|
21
|
+
<div class={className} aria-label="ticket-x" role="img" onmouseenter={handleMouseEnter}>
|
|
22
|
+
<svg
|
|
23
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
24
|
+
width={size}
|
|
25
|
+
height={size}
|
|
26
|
+
viewBox="0 0 24 24"
|
|
27
|
+
fill="none"
|
|
28
|
+
stroke={color}
|
|
29
|
+
stroke-width={strokeWidth}
|
|
30
|
+
stroke-linecap="round"
|
|
31
|
+
stroke-linejoin="round"
|
|
32
|
+
class="ticket-x-icon"
|
|
33
|
+
class:animate
|
|
34
|
+
>
|
|
35
|
+
<path
|
|
36
|
+
d="M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"
|
|
37
|
+
/>
|
|
38
|
+
<path d="m14.5 9.5-5 5" class="diagonal-1" />
|
|
39
|
+
<path d="m9.5 9.5 5 5" class="diagonal-2" />
|
|
40
|
+
</svg>
|
|
41
|
+
</div>
|
|
42
|
+
|
|
43
|
+
<style>
|
|
44
|
+
div {
|
|
45
|
+
display: inline-block;
|
|
46
|
+
}
|
|
47
|
+
.ticket-x-icon {
|
|
48
|
+
overflow: visible;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.diagonal-1,
|
|
52
|
+
.diagonal-2 {
|
|
53
|
+
stroke-dasharray: 7.1;
|
|
54
|
+
stroke-dashoffset: 0;
|
|
55
|
+
transition: stroke-dashoffset 0.15s ease-out;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.ticket-x-icon.animate .diagonal-1 {
|
|
59
|
+
opacity: 0;
|
|
60
|
+
animation: lineAnimation 0.3s ease-out forwards;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.ticket-x-icon.animate .diagonal-2 {
|
|
64
|
+
opacity: 0;
|
|
65
|
+
animation: lineAnimation 0.3s ease-out 0.25s forwards;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
@keyframes lineAnimation {
|
|
69
|
+
0% {
|
|
70
|
+
opacity: 0;
|
|
71
|
+
stroke-dashoffset: 7.1;
|
|
72
|
+
}
|
|
73
|
+
15% {
|
|
74
|
+
opacity: 1;
|
|
75
|
+
stroke-dashoffset: 7.1;
|
|
76
|
+
}
|
|
77
|
+
100% {
|
|
78
|
+
opacity: 1;
|
|
79
|
+
stroke-dashoffset: 0;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
</style>
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import type { IconProps } from './types.js';
|
|
3
|
+
|
|
4
|
+
let {
|
|
5
|
+
color = 'currentColor',
|
|
6
|
+
size = 24,
|
|
7
|
+
strokeWidth = 2,
|
|
8
|
+
animate = false,
|
|
9
|
+
class: className = ''
|
|
10
|
+
}: IconProps = $props();
|
|
11
|
+
|
|
12
|
+
function handleMouseEnter() {
|
|
13
|
+
if (animate) return;
|
|
14
|
+
animate = true;
|
|
15
|
+
setTimeout(() => {
|
|
16
|
+
animate = false;
|
|
17
|
+
}, 600);
|
|
18
|
+
}
|
|
19
|
+
</script>
|
|
20
|
+
|
|
21
|
+
<div class={className} aria-label="user-round-x" role="img" onmouseenter={handleMouseEnter}>
|
|
22
|
+
<svg
|
|
23
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
24
|
+
width={size}
|
|
25
|
+
height={size}
|
|
26
|
+
viewBox="0 0 24 24"
|
|
27
|
+
fill="none"
|
|
28
|
+
stroke={color}
|
|
29
|
+
stroke-width={strokeWidth}
|
|
30
|
+
stroke-linecap="round"
|
|
31
|
+
stroke-linejoin="round"
|
|
32
|
+
class="user-round-x-icon"
|
|
33
|
+
class:animate
|
|
34
|
+
>
|
|
35
|
+
<path d="M2 21a8 8 0 0 1 11.873-7" class="user-round-path" />
|
|
36
|
+
<circle cx="10" cy="8" r="5" class="user-round-circle" />
|
|
37
|
+
<path d="m22 17-5 5" class="diagonal-1" />
|
|
38
|
+
<path d="m17 17 5 5" class="diagonal-2" />
|
|
39
|
+
</svg>
|
|
40
|
+
</div>
|
|
41
|
+
|
|
42
|
+
<style>
|
|
43
|
+
div {
|
|
44
|
+
display: inline-block;
|
|
45
|
+
}
|
|
46
|
+
.user-round-x-icon {
|
|
47
|
+
overflow: visible;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.user-round-path,
|
|
51
|
+
.user-round-circle {
|
|
52
|
+
transition: transform 0.6s ease-in-out;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.user-round-x-icon.animate .user-round-path {
|
|
56
|
+
animation: pathBounce 0.6s ease-in-out;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.user-round-x-icon.animate .user-round-circle {
|
|
60
|
+
animation: circleBounce 0.6s ease-in-out;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.diagonal-1,
|
|
64
|
+
.diagonal-2 {
|
|
65
|
+
stroke-dasharray: 7.1;
|
|
66
|
+
stroke-dashoffset: 0;
|
|
67
|
+
transition: stroke-dashoffset 0.15s ease-out;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.user-round-x-icon.animate .diagonal-1 {
|
|
71
|
+
opacity: 0;
|
|
72
|
+
animation: lineAnimation 0.3s ease-out forwards;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.user-round-x-icon.animate .diagonal-2 {
|
|
76
|
+
opacity: 0;
|
|
77
|
+
animation: lineAnimation 0.3s ease-out 0.25s forwards;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
@keyframes pathBounce {
|
|
81
|
+
0% {
|
|
82
|
+
transform: translateY(0);
|
|
83
|
+
}
|
|
84
|
+
33% {
|
|
85
|
+
transform: translateY(4px);
|
|
86
|
+
}
|
|
87
|
+
66% {
|
|
88
|
+
transform: translateY(-2px);
|
|
89
|
+
}
|
|
90
|
+
100% {
|
|
91
|
+
transform: translateY(0);
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
@keyframes circleBounce {
|
|
96
|
+
0% {
|
|
97
|
+
transform: translateY(0);
|
|
98
|
+
}
|
|
99
|
+
33% {
|
|
100
|
+
transform: translateY(1px);
|
|
101
|
+
}
|
|
102
|
+
66% {
|
|
103
|
+
transform: translateY(-2px);
|
|
104
|
+
}
|
|
105
|
+
100% {
|
|
106
|
+
transform: translateY(0);
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
@keyframes lineAnimation {
|
|
111
|
+
0% {
|
|
112
|
+
opacity: 0;
|
|
113
|
+
stroke-dashoffset: 7.1;
|
|
114
|
+
}
|
|
115
|
+
15% {
|
|
116
|
+
opacity: 1;
|
|
117
|
+
stroke-dashoffset: 7.1;
|
|
118
|
+
}
|
|
119
|
+
100% {
|
|
120
|
+
opacity: 1;
|
|
121
|
+
stroke-dashoffset: 0;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
</style>
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import type { IconProps } from './types.js';
|
|
3
|
+
|
|
4
|
+
let {
|
|
5
|
+
color = 'currentColor',
|
|
6
|
+
size = 24,
|
|
7
|
+
strokeWidth = 2,
|
|
8
|
+
animate = false,
|
|
9
|
+
class: className = ''
|
|
10
|
+
}: IconProps = $props();
|
|
11
|
+
|
|
12
|
+
function handleMouseEnter() {
|
|
13
|
+
if (animate) return;
|
|
14
|
+
animate = true;
|
|
15
|
+
setTimeout(() => {
|
|
16
|
+
animate = false;
|
|
17
|
+
}, 600);
|
|
18
|
+
}
|
|
19
|
+
</script>
|
|
20
|
+
|
|
21
|
+
<div class={className} aria-label="volume-x" role="img" onmouseenter={handleMouseEnter}>
|
|
22
|
+
<svg
|
|
23
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
24
|
+
width={size}
|
|
25
|
+
height={size}
|
|
26
|
+
viewBox="0 0 24 24"
|
|
27
|
+
fill="none"
|
|
28
|
+
stroke={color}
|
|
29
|
+
stroke-width={strokeWidth}
|
|
30
|
+
stroke-linecap="round"
|
|
31
|
+
stroke-linejoin="round"
|
|
32
|
+
class="volume-x-icon"
|
|
33
|
+
class:animate
|
|
34
|
+
>
|
|
35
|
+
<path
|
|
36
|
+
d="M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z"
|
|
37
|
+
/>
|
|
38
|
+
<line x1="22" x2="16" y1="9" y2="15" class="diagonal-1" />
|
|
39
|
+
<line x1="16" x2="22" y1="9" y2="15" class="diagonal-2" />
|
|
40
|
+
</svg>
|
|
41
|
+
</div>
|
|
42
|
+
|
|
43
|
+
<style>
|
|
44
|
+
div {
|
|
45
|
+
display: inline-block;
|
|
46
|
+
}
|
|
47
|
+
.volume-x-icon {
|
|
48
|
+
overflow: visible;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.diagonal-1,
|
|
52
|
+
.diagonal-2 {
|
|
53
|
+
stroke-dasharray: 8.5;
|
|
54
|
+
stroke-dashoffset: 0;
|
|
55
|
+
transition: stroke-dashoffset 0.15s ease-out;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.volume-x-icon.animate .diagonal-1 {
|
|
59
|
+
opacity: 0;
|
|
60
|
+
animation: lineAnimation 0.3s ease-out forwards;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.volume-x-icon.animate .diagonal-2 {
|
|
64
|
+
opacity: 0;
|
|
65
|
+
animation: lineAnimation 0.3s ease-out 0.25s forwards;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
@keyframes lineAnimation {
|
|
69
|
+
0% {
|
|
70
|
+
opacity: 0;
|
|
71
|
+
stroke-dashoffset: 8.5;
|
|
72
|
+
}
|
|
73
|
+
15% {
|
|
74
|
+
opacity: 1;
|
|
75
|
+
stroke-dashoffset: 8.5;
|
|
76
|
+
}
|
|
77
|
+
100% {
|
|
78
|
+
opacity: 1;
|
|
79
|
+
stroke-dashoffset: 0;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
</style>
|
package/dist/index.d.ts
CHANGED
|
@@ -41,6 +41,7 @@ export { default as Axis3d } from './icons/axis-3d.svelte';
|
|
|
41
41
|
export { default as BadgeAlert } from './icons/badge-alert.svelte';
|
|
42
42
|
export { default as BadgeCheck } from './icons/badge-check.svelte';
|
|
43
43
|
export { default as BadgeQuestionMark } from './icons/badge-question-mark.svelte';
|
|
44
|
+
export { default as BadgeX } from './icons/badge-x.svelte';
|
|
44
45
|
export { default as BatteryCharging } from './icons/battery-charging.svelte';
|
|
45
46
|
export { default as BatteryFull } from './icons/battery-full.svelte';
|
|
46
47
|
export { default as BatteryLow } from './icons/battery-low.svelte';
|
|
@@ -107,6 +108,8 @@ export { default as CalendarCog } from './icons/calendar-cog.svelte';
|
|
|
107
108
|
export { default as CalendarDays } from './icons/calendar-days.svelte';
|
|
108
109
|
export { default as CalendarOff } from './icons/calendar-off.svelte';
|
|
109
110
|
export { default as CalendarSync } from './icons/calendar-sync.svelte';
|
|
111
|
+
export { default as CalendarX2 } from './icons/calendar-x-2.svelte';
|
|
112
|
+
export { default as CalendarX } from './icons/calendar-x.svelte';
|
|
110
113
|
export { default as CameraOff } from './icons/camera-off.svelte';
|
|
111
114
|
export { default as CandyOff } from './icons/candy-off.svelte';
|
|
112
115
|
export { default as CaptionsOff } from './icons/captions-off.svelte';
|
|
@@ -163,6 +166,7 @@ export { default as CircleOff } from './icons/circle-off.svelte';
|
|
|
163
166
|
export { default as CircleParkingOff } from './icons/circle-parking-off.svelte';
|
|
164
167
|
export { default as CirclePlus } from './icons/circle-plus.svelte';
|
|
165
168
|
export { default as CircleQuestionMark } from './icons/circle-question-mark.svelte';
|
|
169
|
+
export { default as CircleX } from './icons/circle-x.svelte';
|
|
166
170
|
export { default as Clapperboard } from './icons/clapperboard.svelte';
|
|
167
171
|
export { default as ClipboardCheck } from './icons/clipboard-check.svelte';
|
|
168
172
|
export { default as ClipboardList } from './icons/clipboard-list.svelte';
|
|
@@ -231,6 +235,8 @@ export { default as FileSliders } from './icons/file-sliders.svelte';
|
|
|
231
235
|
export { default as FileStack } from './icons/file-stack.svelte';
|
|
232
236
|
export { default as FileTerminal } from './icons/file-terminal.svelte';
|
|
233
237
|
export { default as FileUp } from './icons/file-up.svelte';
|
|
238
|
+
export { default as FileXCorner } from './icons/file-x-corner.svelte';
|
|
239
|
+
export { default as FileX } from './icons/file-x.svelte';
|
|
234
240
|
export { default as FishOff } from './icons/fish-off.svelte';
|
|
235
241
|
export { default as FlagOff } from './icons/flag-off.svelte';
|
|
236
242
|
export { default as FlashlightOff } from './icons/flashlight-off.svelte';
|
|
@@ -253,6 +259,7 @@ export { default as GalleryVerticalEnd } from './icons/gallery-vertical-end.svel
|
|
|
253
259
|
export { default as GalleryVertical } from './icons/gallery-vertical.svelte';
|
|
254
260
|
export { default as Gauge } from './icons/gauge.svelte';
|
|
255
261
|
export { default as Gavel } from './icons/gavel.svelte';
|
|
262
|
+
export { default as GlobeX } from './icons/globe-x.svelte';
|
|
256
263
|
export { default as Grid2x2Check } from './icons/grid-2x2-check.svelte';
|
|
257
264
|
export { default as GripHorizontal } from './icons/grip-horizontal.svelte';
|
|
258
265
|
export { default as GripVertical } from './icons/grip-vertical.svelte';
|
|
@@ -298,9 +305,12 @@ export { default as LoaderPinwheel } from './icons/loader-pinwheel.svelte';
|
|
|
298
305
|
export { default as LocateOff } from './icons/locate-off.svelte';
|
|
299
306
|
export { default as LogOut } from './icons/log-out.svelte';
|
|
300
307
|
export { default as MailCheck } from './icons/mail-check.svelte';
|
|
308
|
+
export { default as MailX } from './icons/mail-x.svelte';
|
|
301
309
|
export { default as MapPinCheckInside } from './icons/map-pin-check-inside.svelte';
|
|
302
310
|
export { default as MapPinCheck } from './icons/map-pin-check.svelte';
|
|
303
311
|
export { default as MapPinOff } from './icons/map-pin-off.svelte';
|
|
312
|
+
export { default as MapPinXInside } from './icons/map-pin-x-inside.svelte';
|
|
313
|
+
export { default as MapPinX } from './icons/map-pin-x.svelte';
|
|
304
314
|
export { default as Maximize2 } from './icons/maximize-2.svelte';
|
|
305
315
|
export { default as Maximize } from './icons/maximize.svelte';
|
|
306
316
|
export { default as MegaphoneOff } from './icons/megaphone-off.svelte';
|
|
@@ -333,6 +343,7 @@ export { default as MonitorCog } from './icons/monitor-cog.svelte';
|
|
|
333
343
|
export { default as MonitorDown } from './icons/monitor-down.svelte';
|
|
334
344
|
export { default as MonitorOff } from './icons/monitor-off.svelte';
|
|
335
345
|
export { default as MonitorUp } from './icons/monitor-up.svelte';
|
|
346
|
+
export { default as MonitorX } from './icons/monitor-x.svelte';
|
|
336
347
|
export { default as MouseOff } from './icons/mouse-off.svelte';
|
|
337
348
|
export { default as MousePointer2 } from './icons/mouse-pointer-2.svelte';
|
|
338
349
|
export { default as MousePointer } from './icons/mouse-pointer.svelte';
|
|
@@ -354,8 +365,10 @@ export { default as Nfc } from './icons/nfc.svelte';
|
|
|
354
365
|
export { default as NotebookPen } from './icons/notebook-pen.svelte';
|
|
355
366
|
export { default as NutOff } from './icons/nut-off.svelte';
|
|
356
367
|
export { default as OctagonAlert } from './icons/octagon-alert.svelte';
|
|
368
|
+
export { default as OctagonX } from './icons/octagon-x.svelte';
|
|
357
369
|
export { default as Orbit } from './icons/orbit.svelte';
|
|
358
370
|
export { default as PackageCheck } from './icons/package-check.svelte';
|
|
371
|
+
export { default as PackageX } from './icons/package-x.svelte';
|
|
359
372
|
export { default as Paintbrush } from './icons/paintbrush.svelte';
|
|
360
373
|
export { default as PanelBottomClose } from './icons/panel-bottom-close.svelte';
|
|
361
374
|
export { default as PanelBottomOpen } from './icons/panel-bottom-open.svelte';
|
|
@@ -409,6 +422,7 @@ export { default as SaveOff } from './icons/save-off.svelte';
|
|
|
409
422
|
export { default as ScanText } from './icons/scan-text.svelte';
|
|
410
423
|
export { default as Scissors } from './icons/scissors.svelte';
|
|
411
424
|
export { default as SearchCheck } from './icons/search-check.svelte';
|
|
425
|
+
export { default as SearchX } from './icons/search-x.svelte';
|
|
412
426
|
export { default as Search } from './icons/search.svelte';
|
|
413
427
|
export { default as SendHorizontal } from './icons/send-horizontal.svelte';
|
|
414
428
|
export { default as Send } from './icons/send.svelte';
|
|
@@ -420,6 +434,7 @@ export { default as ShieldCheck } from './icons/shield-check.svelte';
|
|
|
420
434
|
export { default as ShieldOff } from './icons/shield-off.svelte';
|
|
421
435
|
export { default as ShieldPlus } from './icons/shield-plus.svelte';
|
|
422
436
|
export { default as ShieldQuestionMark } from './icons/shield-question-mark.svelte';
|
|
437
|
+
export { default as ShieldX } from './icons/shield-x.svelte';
|
|
423
438
|
export { default as ShipWheel } from './icons/ship-wheel.svelte';
|
|
424
439
|
export { default as Ship } from './icons/ship.svelte';
|
|
425
440
|
export { default as ShoppingCart } from './icons/shopping-cart.svelte';
|
|
@@ -467,6 +482,7 @@ export { default as SquarePlus } from './icons/square-plus.svelte';
|
|
|
467
482
|
export { default as SquareScissors } from './icons/square-scissors.svelte';
|
|
468
483
|
export { default as SquareStack } from './icons/square-stack.svelte';
|
|
469
484
|
export { default as SquareTerminal } from './icons/square-terminal.svelte';
|
|
485
|
+
export { default as SquareX } from './icons/square-x.svelte';
|
|
470
486
|
export { default as StarOff } from './icons/star-off.svelte';
|
|
471
487
|
export { default as Star } from './icons/star.svelte';
|
|
472
488
|
export { default as Sun } from './icons/sun.svelte';
|
|
@@ -482,6 +498,7 @@ export { default as Thermometer } from './icons/thermometer.svelte';
|
|
|
482
498
|
export { default as ThumbsDown } from './icons/thumbs-down.svelte';
|
|
483
499
|
export { default as ThumbsUp } from './icons/thumbs-up.svelte';
|
|
484
500
|
export { default as TicketCheck } from './icons/ticket-check.svelte';
|
|
501
|
+
export { default as TicketX } from './icons/ticket-x.svelte';
|
|
485
502
|
export { default as TimerOff } from './icons/timer-off.svelte';
|
|
486
503
|
export { default as Timer } from './icons/timer.svelte';
|
|
487
504
|
export { default as ToggleLeft } from './icons/toggle-left.svelte';
|
|
@@ -504,6 +521,7 @@ export { default as UserPen } from './icons/user-pen.svelte';
|
|
|
504
521
|
export { default as UserRoundCheck } from './icons/user-round-check.svelte';
|
|
505
522
|
export { default as UserRoundCog } from './icons/user-round-cog.svelte';
|
|
506
523
|
export { default as UserRoundPen } from './icons/user-round-pen.svelte';
|
|
524
|
+
export { default as UserRoundX } from './icons/user-round-x.svelte';
|
|
507
525
|
export { default as UserRound } from './icons/user-round.svelte';
|
|
508
526
|
export { default as UserX } from './icons/user-x.svelte';
|
|
509
527
|
export { default as User } from './icons/user.svelte';
|
|
@@ -514,6 +532,7 @@ export { default as VibrateOff } from './icons/vibrate-off.svelte';
|
|
|
514
532
|
export { default as Vibrate } from './icons/vibrate.svelte';
|
|
515
533
|
export { default as VideoOff } from './icons/video-off.svelte';
|
|
516
534
|
export { default as VolumeOff } from './icons/volume-off.svelte';
|
|
535
|
+
export { default as VolumeX } from './icons/volume-x.svelte';
|
|
517
536
|
export { default as Vote } from './icons/vote.svelte';
|
|
518
537
|
export { default as WashingMachine } from './icons/washing-machine.svelte';
|
|
519
538
|
export { default as Waves } from './icons/waves.svelte';
|
|
@@ -529,4 +548,4 @@ export { default as WineOff } from './icons/wine-off.svelte';
|
|
|
529
548
|
export { default as X } from './icons/x.svelte';
|
|
530
549
|
export { default as ZapOff } from './icons/zap-off.svelte';
|
|
531
550
|
export type { IconProps } from './icons/types.js';
|
|
532
|
-
export type IconName = 'accessibility' | 'activity' | 'airplay' | 'alarm-clock-check' | 'alarm-clock-off' | 'alarm-clock' | 'align-horizontal-space-around' | 'align-vertical-space-around' | 'anvil' | 'archive' | 'arrow-big-down-dash' | 'arrow-big-down' | 'arrow-big-left-dash' | 'arrow-big-left' | 'arrow-big-right-dash' | 'arrow-big-right' | 'arrow-big-up-dash' | 'arrow-big-up' | 'arrow-down-0-1' | 'arrow-down-1-0' | 'arrow-down-a-z' | 'arrow-down-left' | 'arrow-down-right' | 'arrow-down-z-a' | 'arrow-down' | 'arrow-left-right' | 'arrow-left' | 'arrow-right-left' | 'arrow-right' | 'arrow-up-0-1' | 'arrow-up-1-0' | 'arrow-up-a-z' | 'arrow-up-left' | 'arrow-up-right' | 'arrow-up-z-a' | 'arrow-up' | 'audio-lines' | 'award' | 'axe' | 'axis-3d' | 'badge-alert' | 'badge-check' | 'badge-question-mark' | 'battery-charging' | 'battery-full' | 'battery-low' | 'battery-medium' | 'battery-warning' | 'battery' | 'bean-off' | 'beer-off' | 'bell-off' | 'bell-ring' | 'bell' | 'between-horizontal-end' | 'between-horizontal-start' | 'between-vertical-end' | 'between-vertical-start' | 'binary' | 'blend' | 'blocks' | 'bluetooth-off' | 'bold' | 'bolt' | 'bone' | 'book-a' | 'book-audio' | 'book-check' | 'book-dashed' | 'book-down' | 'book-headphones' | 'book-heart' | 'book-image' | 'book-key' | 'book-lock' | 'book-marked' | 'book-minus' | 'book-open-check' | 'book-open-text' | 'book-plus' | 'book-text' | 'book-type' | 'book-up-2' | 'book-up' | 'book-user' | 'book-x' | 'book' | 'bookmark-check' | 'bookmark-minus' | 'bookmark-plus' | 'bookmark-x' | 'bookmark' | 'bot-off' | 'bot' | 'boxes' | 'brain-cog' | 'briefcase-business' | 'briefcase-conveyor-belt' | 'briefcase-medical' | 'briefcase' | 'brush-cleaning' | 'brush' | 'bug-off' | 'calendar-check-2' | 'calendar-check' | 'calendar-cog' | 'calendar-days' | 'calendar-off' | 'calendar-sync' | 'camera-off' | 'candy-off' | 'captions-off' | 'cast' | 'cctv' | 'chart-bar-decreasing' | 'chart-bar-increasing' | 'chart-bar' | 'chart-column-decreasing' | 'chart-column-increasing' | 'chart-column' | 'chart-gantt' | 'chart-line' | 'chart-no-axes-column-decreasing' | 'chart-no-axes-column-increasing' | 'chart-no-axes-column' | 'chart-no-axes-combined' | 'chart-no-axes-gantt' | 'chart-pie' | 'chart-scatter' | 'chart-spline' | 'check-check' | 'check' | 'cherry' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chevrons-down-up' | 'chevrons-down' | 'chevrons-left-right' | 'chevrons-left' | 'chevrons-right-left' | 'chevrons-right' | 'chevrons-up-down' | 'chevrons-up' | 'cigarette-off' | 'circle-alert' | 'circle-arrow-down' | 'circle-arrow-left' | 'circle-arrow-out-down-left' | 'circle-arrow-out-down-right' | 'circle-arrow-out-up-left' | 'circle-arrow-out-up-right' | 'circle-arrow-right' | 'circle-arrow-up' | 'circle-check-big' | 'circle-check' | 'circle-chevron-down' | 'circle-chevron-left' | 'circle-chevron-right' | 'circle-chevron-up' | 'circle-off' | 'circle-parking-off' | 'circle-plus' | 'circle-question-mark' | 'clapperboard' | 'clipboard-check' | 'clipboard-list' | 'clipboard-pen-line' | 'clipboard-pen' | 'clipboard-x' | 'clipboard' | 'clock-1' | 'clock-10' | 'clock-11' | 'clock-12' | 'clock-2' | 'clock-3' | 'clock-4' | 'clock-5' | 'clock-6' | 'clock-7' | 'clock-8' | 'clock-9' | 'clock' | 'cloud-cog' | 'cloud-download' | 'cloud-moon' | 'cloud-off' | 'cloud-upload' | 'cog' | 'compass' | 'contrast' | 'copy-check' | 'copy' | 'cpu' | 'crop' | 'diamond-plus' | 'dice-1' | 'dice-2' | 'dice-3' | 'dice-4' | 'dice-5' | 'dice-6' | 'diff' | 'disc-3' | 'dna-off' | 'download' | 'droplet-off' | 'drum' | 'ear-off' | 'eclipse' | 'egg-off' | 'expand' | 'eye-off' | 'eye' | 'file-chart-column-increasing' | 'file-chart-column' | 'file-chart-line' | 'file-check-corner' | 'file-check' | 'file-cog' | 'file-down' | 'file-exclamation-point' | 'file-minus' | 'file-pen-line' | 'file-pen' | 'file-plus' | 'file-question-mark' | 'file-sliders' | 'file-stack' | 'file-terminal' | 'file-up' | 'fish-off' | 'flag-off' | 'flashlight-off' | 'flask-conical-off' | 'folder-check' | 'folder-cog' | 'folder-down' | 'folder-kanban' | 'folder-pen' | 'folder-plus' | 'folder-sync' | 'folder-up' | 'folder-x' | 'frame' | 'funnel-x' | 'gallery-horizontal-end' | 'gallery-horizontal' | 'gallery-thumbnails' | 'gallery-vertical-end' | 'gallery-vertical' | 'gauge' | 'gavel' | 'grid-2x2-check' | 'grip-horizontal' | 'grip-vertical' | 'grip' | 'hammer' | 'hand-coins' | 'hand-heart' | 'hard-drive-download' | 'hard-drive-upload' | 'headphone-off' | 'heart-off' | 'heart' | 'history' | 'hop-off' | 'house-wifi' | 'house' | 'image-down' | 'image-off' | 'image-up' | 'images' | 'infinity' | 'kanban' | 'key-round' | 'key-square' | 'key' | 'keyboard-off' | 'keyboard' | 'landmark' | 'layers' | 'layout-dashboard' | 'layout-grid' | 'layout-panel-left' | 'layout-panel-top' | 'layout-template' | 'lightbulb-off' | 'lightbulb' | 'link-2-off' | 'list-check' | 'list-checks' | 'list-restart' | 'list-todo' | 'loader-pinwheel' | 'locate-off' | 'log-out' | 'mail-check' | 'map-pin-check-inside' | 'map-pin-check' | 'map-pin-off' | 'maximize-2' | 'maximize' | 'megaphone-off' | 'message-circle-code' | 'message-circle-dashed' | 'message-circle-heart' | 'message-circle-more' | 'message-circle-off' | 'message-circle-question-mark' | 'message-circle-warning' | 'message-circle-x' | 'message-circle' | 'message-square-code' | 'message-square-dashed' | 'message-square-dot' | 'message-square-heart' | 'message-square-more' | 'message-square-off' | 'message-square-quote' | 'message-square-warning' | 'message-square-x' | 'message-square' | 'mic-off' | 'milk-off' | 'minimize-2' | 'minimize' | 'minus' | 'monitor-check' | 'monitor-cog' | 'monitor-down' | 'monitor-off' | 'monitor-up' | 'mouse-off' | 'mouse-pointer-2' | 'mouse-pointer' | 'move-diagonal-2' | 'move-diagonal' | 'move-down-left' | 'move-down-right' | 'move-down' | 'move-horizontal' | 'move-left' | 'move-right' | 'move-up-left' | 'move-up-right' | 'move-up' | 'move-vertical' | 'navigation-2-off' | 'navigation-off' | 'nfc' | 'notebook-pen' | 'nut-off' | 'octagon-alert' | 'orbit' | 'package-check' | 'paintbrush' | 'panel-bottom-close' | 'panel-bottom-open' | 'panel-bottom' | 'panel-left-close' | 'panel-left-open' | 'panel-left' | 'panel-right-close' | 'panel-right-open' | 'panel-right' | 'panel-top-close' | 'panel-top-open' | 'panel-top' | 'paperclip' | 'pen-line' | 'pen-off' | 'pen' | 'pencil-line' | 'pencil-off' | 'pencil' | 'phone-off' | 'pickaxe' | 'pin-off' | 'plane' | 'play' | 'plus' | 'pointer-off' | 'power-off' | 'printer-check' | 'rabbit' | 'radar' | 'radio-tower' | 'radio' | 'rainbow' | 'redo-dot' | 'redo' | 'refresh-ccw-dot' | 'refresh-ccw' | 'refresh-cw-off' | 'refresh-cw' | 'rocket' | 'rocking-chair' | 'rotate-ccw-key' | 'rotate-ccw' | 'rotate-cw' | 'route-off' | 'route' | 'rss' | 'satellite-dish' | 'save-off' | 'scan-text' | 'scissors' | 'search-check' | 'search' | 'send-horizontal' | 'send' | 'server-cog' | 'server-off' | 'settings' | 'shield-alert' | 'shield-check' | 'shield-off' | 'shield-plus' | 'shield-question-mark' | 'ship-wheel' | 'ship' | 'shopping-cart' | 'shovel' | 'shower-head' | 'shrink' | 'signal-high' | 'signal-low' | 'signal-medium' | 'signal-zero' | 'signal' | 'signature' | 'sliders-horizontal' | 'sliders-vertical' | 'smartphone-nfc' | 'snowflake' | 'sparkle' | 'sparkles' | 'speech' | 'spell-check' | 'square-arrow-down-left' | 'square-arrow-down-right' | 'square-arrow-down' | 'square-arrow-left' | 'square-arrow-out-down-left' | 'square-arrow-out-down-right' | 'square-arrow-out-up-left' | 'square-arrow-out-up-right' | 'square-arrow-right' | 'square-arrow-up-left' | 'square-arrow-up-right' | 'square-arrow-up' | 'square-chart-gantt' | 'square-check-big' | 'square-check' | 'square-chevron-down' | 'square-chevron-left' | 'square-chevron-right' | 'square-chevron-up' | 'square-dashed-kanban' | 'square-kanban' | 'square-parking-off' | 'square-pen' | 'square-plus' | 'square-scissors' | 'square-stack' | 'square-terminal' | 'star-off' | 'star' | 'sun' | 'sword' | 'tag' | 'telescope' | 'terminal' | 'text-align-center' | 'text-cursor-input' | 'text-cursor' | 'text-search' | 'thermometer' | 'thumbs-down' | 'thumbs-up' | 'ticket-check' | 'timer-off' | 'timer' | 'toggle-left' | 'toggle-right' | 'tornado' | 'touchpad-off' | 'trash-2' | 'trash' | 'triangle-alert' | 'umbrella-off' | 'undo-dot' | 'undo' | 'unfold-horizontal' | 'unfold-vertical' | 'unplug' | 'upload' | 'user-check' | 'user-cog' | 'user-pen' | 'user-round-check' | 'user-round-cog' | 'user-round-pen' | 'user-round' | 'user-x' | 'user' | 'users-round' | 'users' | 'vault' | 'vibrate-off' | 'vibrate' | 'video-off' | 'volume-off' | 'vote' | 'washing-machine' | 'waves' | 'webhook-off' | 'wheat-off' | 'wifi-high' | 'wifi-low' | 'wifi-off' | 'wifi-pen' | 'wifi-zero' | 'wifi' | 'wine-off' | 'x' | 'zap-off';
|
|
551
|
+
export type IconName = 'accessibility' | 'activity' | 'airplay' | 'alarm-clock-check' | 'alarm-clock-off' | 'alarm-clock' | 'align-horizontal-space-around' | 'align-vertical-space-around' | 'anvil' | 'archive' | 'arrow-big-down-dash' | 'arrow-big-down' | 'arrow-big-left-dash' | 'arrow-big-left' | 'arrow-big-right-dash' | 'arrow-big-right' | 'arrow-big-up-dash' | 'arrow-big-up' | 'arrow-down-0-1' | 'arrow-down-1-0' | 'arrow-down-a-z' | 'arrow-down-left' | 'arrow-down-right' | 'arrow-down-z-a' | 'arrow-down' | 'arrow-left-right' | 'arrow-left' | 'arrow-right-left' | 'arrow-right' | 'arrow-up-0-1' | 'arrow-up-1-0' | 'arrow-up-a-z' | 'arrow-up-left' | 'arrow-up-right' | 'arrow-up-z-a' | 'arrow-up' | 'audio-lines' | 'award' | 'axe' | 'axis-3d' | 'badge-alert' | 'badge-check' | 'badge-question-mark' | 'badge-x' | 'battery-charging' | 'battery-full' | 'battery-low' | 'battery-medium' | 'battery-warning' | 'battery' | 'bean-off' | 'beer-off' | 'bell-off' | 'bell-ring' | 'bell' | 'between-horizontal-end' | 'between-horizontal-start' | 'between-vertical-end' | 'between-vertical-start' | 'binary' | 'blend' | 'blocks' | 'bluetooth-off' | 'bold' | 'bolt' | 'bone' | 'book-a' | 'book-audio' | 'book-check' | 'book-dashed' | 'book-down' | 'book-headphones' | 'book-heart' | 'book-image' | 'book-key' | 'book-lock' | 'book-marked' | 'book-minus' | 'book-open-check' | 'book-open-text' | 'book-plus' | 'book-text' | 'book-type' | 'book-up-2' | 'book-up' | 'book-user' | 'book-x' | 'book' | 'bookmark-check' | 'bookmark-minus' | 'bookmark-plus' | 'bookmark-x' | 'bookmark' | 'bot-off' | 'bot' | 'boxes' | 'brain-cog' | 'briefcase-business' | 'briefcase-conveyor-belt' | 'briefcase-medical' | 'briefcase' | 'brush-cleaning' | 'brush' | 'bug-off' | 'calendar-check-2' | 'calendar-check' | 'calendar-cog' | 'calendar-days' | 'calendar-off' | 'calendar-sync' | 'calendar-x-2' | 'calendar-x' | 'camera-off' | 'candy-off' | 'captions-off' | 'cast' | 'cctv' | 'chart-bar-decreasing' | 'chart-bar-increasing' | 'chart-bar' | 'chart-column-decreasing' | 'chart-column-increasing' | 'chart-column' | 'chart-gantt' | 'chart-line' | 'chart-no-axes-column-decreasing' | 'chart-no-axes-column-increasing' | 'chart-no-axes-column' | 'chart-no-axes-combined' | 'chart-no-axes-gantt' | 'chart-pie' | 'chart-scatter' | 'chart-spline' | 'check-check' | 'check' | 'cherry' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chevrons-down-up' | 'chevrons-down' | 'chevrons-left-right' | 'chevrons-left' | 'chevrons-right-left' | 'chevrons-right' | 'chevrons-up-down' | 'chevrons-up' | 'cigarette-off' | 'circle-alert' | 'circle-arrow-down' | 'circle-arrow-left' | 'circle-arrow-out-down-left' | 'circle-arrow-out-down-right' | 'circle-arrow-out-up-left' | 'circle-arrow-out-up-right' | 'circle-arrow-right' | 'circle-arrow-up' | 'circle-check-big' | 'circle-check' | 'circle-chevron-down' | 'circle-chevron-left' | 'circle-chevron-right' | 'circle-chevron-up' | 'circle-off' | 'circle-parking-off' | 'circle-plus' | 'circle-question-mark' | 'circle-x' | 'clapperboard' | 'clipboard-check' | 'clipboard-list' | 'clipboard-pen-line' | 'clipboard-pen' | 'clipboard-x' | 'clipboard' | 'clock-1' | 'clock-10' | 'clock-11' | 'clock-12' | 'clock-2' | 'clock-3' | 'clock-4' | 'clock-5' | 'clock-6' | 'clock-7' | 'clock-8' | 'clock-9' | 'clock' | 'cloud-cog' | 'cloud-download' | 'cloud-moon' | 'cloud-off' | 'cloud-upload' | 'cog' | 'compass' | 'contrast' | 'copy-check' | 'copy' | 'cpu' | 'crop' | 'diamond-plus' | 'dice-1' | 'dice-2' | 'dice-3' | 'dice-4' | 'dice-5' | 'dice-6' | 'diff' | 'disc-3' | 'dna-off' | 'download' | 'droplet-off' | 'drum' | 'ear-off' | 'eclipse' | 'egg-off' | 'expand' | 'eye-off' | 'eye' | 'file-chart-column-increasing' | 'file-chart-column' | 'file-chart-line' | 'file-check-corner' | 'file-check' | 'file-cog' | 'file-down' | 'file-exclamation-point' | 'file-minus' | 'file-pen-line' | 'file-pen' | 'file-plus' | 'file-question-mark' | 'file-sliders' | 'file-stack' | 'file-terminal' | 'file-up' | 'file-x-corner' | 'file-x' | 'fish-off' | 'flag-off' | 'flashlight-off' | 'flask-conical-off' | 'folder-check' | 'folder-cog' | 'folder-down' | 'folder-kanban' | 'folder-pen' | 'folder-plus' | 'folder-sync' | 'folder-up' | 'folder-x' | 'frame' | 'funnel-x' | 'gallery-horizontal-end' | 'gallery-horizontal' | 'gallery-thumbnails' | 'gallery-vertical-end' | 'gallery-vertical' | 'gauge' | 'gavel' | 'globe-x' | 'grid-2x2-check' | 'grip-horizontal' | 'grip-vertical' | 'grip' | 'hammer' | 'hand-coins' | 'hand-heart' | 'hard-drive-download' | 'hard-drive-upload' | 'headphone-off' | 'heart-off' | 'heart' | 'history' | 'hop-off' | 'house-wifi' | 'house' | 'image-down' | 'image-off' | 'image-up' | 'images' | 'infinity' | 'kanban' | 'key-round' | 'key-square' | 'key' | 'keyboard-off' | 'keyboard' | 'landmark' | 'layers' | 'layout-dashboard' | 'layout-grid' | 'layout-panel-left' | 'layout-panel-top' | 'layout-template' | 'lightbulb-off' | 'lightbulb' | 'link-2-off' | 'list-check' | 'list-checks' | 'list-restart' | 'list-todo' | 'loader-pinwheel' | 'locate-off' | 'log-out' | 'mail-check' | 'mail-x' | 'map-pin-check-inside' | 'map-pin-check' | 'map-pin-off' | 'map-pin-x-inside' | 'map-pin-x' | 'maximize-2' | 'maximize' | 'megaphone-off' | 'message-circle-code' | 'message-circle-dashed' | 'message-circle-heart' | 'message-circle-more' | 'message-circle-off' | 'message-circle-question-mark' | 'message-circle-warning' | 'message-circle-x' | 'message-circle' | 'message-square-code' | 'message-square-dashed' | 'message-square-dot' | 'message-square-heart' | 'message-square-more' | 'message-square-off' | 'message-square-quote' | 'message-square-warning' | 'message-square-x' | 'message-square' | 'mic-off' | 'milk-off' | 'minimize-2' | 'minimize' | 'minus' | 'monitor-check' | 'monitor-cog' | 'monitor-down' | 'monitor-off' | 'monitor-up' | 'monitor-x' | 'mouse-off' | 'mouse-pointer-2' | 'mouse-pointer' | 'move-diagonal-2' | 'move-diagonal' | 'move-down-left' | 'move-down-right' | 'move-down' | 'move-horizontal' | 'move-left' | 'move-right' | 'move-up-left' | 'move-up-right' | 'move-up' | 'move-vertical' | 'navigation-2-off' | 'navigation-off' | 'nfc' | 'notebook-pen' | 'nut-off' | 'octagon-alert' | 'octagon-x' | 'orbit' | 'package-check' | 'package-x' | 'paintbrush' | 'panel-bottom-close' | 'panel-bottom-open' | 'panel-bottom' | 'panel-left-close' | 'panel-left-open' | 'panel-left' | 'panel-right-close' | 'panel-right-open' | 'panel-right' | 'panel-top-close' | 'panel-top-open' | 'panel-top' | 'paperclip' | 'pen-line' | 'pen-off' | 'pen' | 'pencil-line' | 'pencil-off' | 'pencil' | 'phone-off' | 'pickaxe' | 'pin-off' | 'plane' | 'play' | 'plus' | 'pointer-off' | 'power-off' | 'printer-check' | 'rabbit' | 'radar' | 'radio-tower' | 'radio' | 'rainbow' | 'redo-dot' | 'redo' | 'refresh-ccw-dot' | 'refresh-ccw' | 'refresh-cw-off' | 'refresh-cw' | 'rocket' | 'rocking-chair' | 'rotate-ccw-key' | 'rotate-ccw' | 'rotate-cw' | 'route-off' | 'route' | 'rss' | 'satellite-dish' | 'save-off' | 'scan-text' | 'scissors' | 'search-check' | 'search-x' | 'search' | 'send-horizontal' | 'send' | 'server-cog' | 'server-off' | 'settings' | 'shield-alert' | 'shield-check' | 'shield-off' | 'shield-plus' | 'shield-question-mark' | 'shield-x' | 'ship-wheel' | 'ship' | 'shopping-cart' | 'shovel' | 'shower-head' | 'shrink' | 'signal-high' | 'signal-low' | 'signal-medium' | 'signal-zero' | 'signal' | 'signature' | 'sliders-horizontal' | 'sliders-vertical' | 'smartphone-nfc' | 'snowflake' | 'sparkle' | 'sparkles' | 'speech' | 'spell-check' | 'square-arrow-down-left' | 'square-arrow-down-right' | 'square-arrow-down' | 'square-arrow-left' | 'square-arrow-out-down-left' | 'square-arrow-out-down-right' | 'square-arrow-out-up-left' | 'square-arrow-out-up-right' | 'square-arrow-right' | 'square-arrow-up-left' | 'square-arrow-up-right' | 'square-arrow-up' | 'square-chart-gantt' | 'square-check-big' | 'square-check' | 'square-chevron-down' | 'square-chevron-left' | 'square-chevron-right' | 'square-chevron-up' | 'square-dashed-kanban' | 'square-kanban' | 'square-parking-off' | 'square-pen' | 'square-plus' | 'square-scissors' | 'square-stack' | 'square-terminal' | 'square-x' | 'star-off' | 'star' | 'sun' | 'sword' | 'tag' | 'telescope' | 'terminal' | 'text-align-center' | 'text-cursor-input' | 'text-cursor' | 'text-search' | 'thermometer' | 'thumbs-down' | 'thumbs-up' | 'ticket-check' | 'ticket-x' | 'timer-off' | 'timer' | 'toggle-left' | 'toggle-right' | 'tornado' | 'touchpad-off' | 'trash-2' | 'trash' | 'triangle-alert' | 'umbrella-off' | 'undo-dot' | 'undo' | 'unfold-horizontal' | 'unfold-vertical' | 'unplug' | 'upload' | 'user-check' | 'user-cog' | 'user-pen' | 'user-round-check' | 'user-round-cog' | 'user-round-pen' | 'user-round-x' | 'user-round' | 'user-x' | 'user' | 'users-round' | 'users' | 'vault' | 'vibrate-off' | 'vibrate' | 'video-off' | 'volume-off' | 'volume-x' | 'vote' | 'washing-machine' | 'waves' | 'webhook-off' | 'wheat-off' | 'wifi-high' | 'wifi-low' | 'wifi-off' | 'wifi-pen' | 'wifi-zero' | 'wifi' | 'wine-off' | 'x' | 'zap-off';
|