@jis3r/icons 2.5.0 → 2.7.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.
Files changed (44) hide show
  1. package/README.md +2 -0
  2. package/dist/icons/badge-x.svelte +82 -0
  3. package/dist/icons/badge-x.svelte.d.ts +4 -0
  4. package/dist/icons/calendar-x-2.svelte +83 -0
  5. package/dist/icons/calendar-x-2.svelte.d.ts +4 -0
  6. package/dist/icons/calendar-x.svelte +83 -0
  7. package/dist/icons/calendar-x.svelte.d.ts +4 -0
  8. package/dist/icons/circle-x.svelte +80 -0
  9. package/dist/icons/circle-x.svelte.d.ts +4 -0
  10. package/dist/icons/file-text.svelte +92 -0
  11. package/dist/icons/file-text.svelte.d.ts +4 -0
  12. package/dist/icons/file-x-corner.svelte +83 -0
  13. package/dist/icons/file-x-corner.svelte.d.ts +4 -0
  14. package/dist/icons/file-x.svelte +83 -0
  15. package/dist/icons/file-x.svelte.d.ts +4 -0
  16. package/dist/icons/globe-x.svelte +80 -0
  17. package/dist/icons/globe-x.svelte.d.ts +4 -0
  18. package/dist/icons/mail-x.svelte +81 -0
  19. package/dist/icons/mail-x.svelte.d.ts +4 -0
  20. package/dist/icons/map-pin-x-inside.svelte +82 -0
  21. package/dist/icons/map-pin-x-inside.svelte.d.ts +4 -0
  22. package/dist/icons/map-pin-x.svelte +83 -0
  23. package/dist/icons/map-pin-x.svelte.d.ts +4 -0
  24. package/dist/icons/monitor-x.svelte +82 -0
  25. package/dist/icons/monitor-x.svelte.d.ts +4 -0
  26. package/dist/icons/octagon-x.svelte +82 -0
  27. package/dist/icons/octagon-x.svelte.d.ts +4 -0
  28. package/dist/icons/package-x.svelte +85 -0
  29. package/dist/icons/package-x.svelte.d.ts +4 -0
  30. package/dist/icons/search-x.svelte +101 -0
  31. package/dist/icons/search-x.svelte.d.ts +4 -0
  32. package/dist/icons/shield-x.svelte +82 -0
  33. package/dist/icons/shield-x.svelte.d.ts +4 -0
  34. package/dist/icons/square-x.svelte +80 -0
  35. package/dist/icons/square-x.svelte.d.ts +4 -0
  36. package/dist/icons/ticket-x.svelte +82 -0
  37. package/dist/icons/ticket-x.svelte.d.ts +4 -0
  38. package/dist/icons/user-round-x.svelte +124 -0
  39. package/dist/icons/user-round-x.svelte.d.ts +4 -0
  40. package/dist/icons/volume-x.svelte +82 -0
  41. package/dist/icons/volume-x.svelte.d.ts +4 -0
  42. package/dist/index.d.ts +21 -1
  43. package/dist/index.js +20 -0
  44. package/package.json +6 -6
@@ -0,0 +1,101 @@
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
+ }, 1000);
18
+ }
19
+ </script>
20
+
21
+ <div class={className} aria-label="search-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="search-x-icon"
33
+ class:animate
34
+ >
35
+ <path d="m13.5 8.5-5 5" class="diagonal-1" />
36
+ <path d="m8.5 8.5 5 5" class="diagonal-2" />
37
+ <circle cx="11" cy="11" r="8" />
38
+ <path d="m21 21-4.3-4.3" />
39
+ </svg>
40
+ </div>
41
+
42
+ <style>
43
+ div {
44
+ display: inline-block;
45
+ }
46
+ .search-x-icon {
47
+ overflow: visible;
48
+ transition:
49
+ transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275),
50
+ transform 1s ease-in-out;
51
+ }
52
+
53
+ .search-x-icon.animate {
54
+ animation: search-bounce 1s ease-in-out;
55
+ }
56
+
57
+ .diagonal-1,
58
+ .diagonal-2 {
59
+ stroke-dasharray: 7.1;
60
+ stroke-dashoffset: 0;
61
+ transition: stroke-dashoffset 0.15s ease-out;
62
+ }
63
+
64
+ .search-x-icon.animate .diagonal-1 {
65
+ opacity: 0;
66
+ animation: lineAnimation 0.3s ease-out forwards;
67
+ }
68
+
69
+ .search-x-icon.animate .diagonal-2 {
70
+ opacity: 0;
71
+ animation: lineAnimation 0.3s ease-out 0.25s forwards;
72
+ }
73
+
74
+ @keyframes search-bounce {
75
+ 0%,
76
+ 100% {
77
+ transform: translateX(0) translateY(0);
78
+ }
79
+ 25% {
80
+ transform: translateX(0) translateY(-4px);
81
+ }
82
+ 50% {
83
+ transform: translateX(-3px) translateY(0);
84
+ }
85
+ }
86
+
87
+ @keyframes lineAnimation {
88
+ 0% {
89
+ opacity: 0;
90
+ stroke-dashoffset: 7.1;
91
+ }
92
+ 15% {
93
+ opacity: 1;
94
+ stroke-dashoffset: 7.1;
95
+ }
96
+ 100% {
97
+ opacity: 1;
98
+ stroke-dashoffset: 0;
99
+ }
100
+ }
101
+ </style>
@@ -0,0 +1,4 @@
1
+ import type { IconProps } from './types.js';
2
+ declare const SearchX: import("svelte").Component<IconProps, {}, "">;
3
+ type SearchX = ReturnType<typeof SearchX>;
4
+ export default SearchX;
@@ -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="shield-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="shield-x-icon"
33
+ class:animate
34
+ >
35
+ <path
36
+ d="M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"
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
+ .shield-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
+ .shield-x-icon.animate .diagonal-1 {
59
+ opacity: 0;
60
+ animation: lineAnimation 0.3s ease-out forwards;
61
+ }
62
+
63
+ .shield-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,4 @@
1
+ import type { IconProps } from './types.js';
2
+ declare const ShieldX: import("svelte").Component<IconProps, {}, "">;
3
+ type ShieldX = ReturnType<typeof ShieldX>;
4
+ export default ShieldX;
@@ -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,4 @@
1
+ import type { IconProps } from './types.js';
2
+ declare const SquareX: import("svelte").Component<IconProps, {}, "">;
3
+ type SquareX = ReturnType<typeof SquareX>;
4
+ export default SquareX;
@@ -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,4 @@
1
+ import type { IconProps } from './types.js';
2
+ declare const TicketX: import("svelte").Component<IconProps, {}, "">;
3
+ type TicketX = ReturnType<typeof TicketX>;
4
+ export default TicketX;
@@ -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,4 @@
1
+ import type { IconProps } from './types.js';
2
+ declare const UserRoundX: import("svelte").Component<IconProps, {}, "">;
3
+ type UserRoundX = ReturnType<typeof UserRoundX>;
4
+ export default UserRoundX;
@@ -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>
@@ -0,0 +1,4 @@
1
+ import type { IconProps } from './types.js';
2
+ declare const VolumeX: import("svelte").Component<IconProps, {}, "">;
3
+ type VolumeX = ReturnType<typeof VolumeX>;
4
+ export default VolumeX;