@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,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="globe-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="globe-x-icon"
33
+ class:animate
34
+ >
35
+ <path d="m21 3-5 5" class="diagonal-1" />
36
+ <path d="m16 3 5 5" class="diagonal-2" />
37
+ <path d="M2 12h20A10 10 0 1 1 12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 4-10" />
38
+ </svg>
39
+ </div>
40
+
41
+ <style>
42
+ div {
43
+ display: inline-block;
44
+ }
45
+ .globe-x-icon {
46
+ overflow: visible;
47
+ }
48
+
49
+ .diagonal-1,
50
+ .diagonal-2 {
51
+ stroke-dasharray: 7.5;
52
+ stroke-dashoffset: 0;
53
+ transition: stroke-dashoffset 0.15s ease-out;
54
+ }
55
+
56
+ .globe-x-icon.animate .diagonal-1 {
57
+ opacity: 0;
58
+ animation: lineAnimation 0.3s ease-out forwards;
59
+ }
60
+
61
+ .globe-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: 7.5;
70
+ }
71
+ 15% {
72
+ opacity: 1;
73
+ stroke-dashoffset: 7.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 GlobeX: import("svelte").Component<IconProps, {}, "">;
3
+ type GlobeX = ReturnType<typeof GlobeX>;
4
+ export default GlobeX;
@@ -0,0 +1,81 @@
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="mail-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="mail-x-icon"
33
+ class:animate
34
+ >
35
+ <path d="M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h9" />
36
+ <path d="m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" />
37
+ <path d="m21 17-4 4" class="diagonal-1" />
38
+ <path d="m17 17 4 4" class="diagonal-2" />
39
+ </svg>
40
+ </div>
41
+
42
+ <style>
43
+ div {
44
+ display: inline-block;
45
+ }
46
+ .mail-x-icon {
47
+ overflow: visible;
48
+ }
49
+
50
+ .diagonal-1,
51
+ .diagonal-2 {
52
+ stroke-dasharray: 6;
53
+ stroke-dashoffset: 0;
54
+ transition: stroke-dashoffset 0.15s ease-out;
55
+ }
56
+
57
+ .mail-x-icon.animate .diagonal-1 {
58
+ opacity: 0;
59
+ animation: lineAnimation 0.3s ease-out forwards;
60
+ }
61
+
62
+ .mail-x-icon.animate .diagonal-2 {
63
+ opacity: 0;
64
+ animation: lineAnimation 0.3s ease-out 0.25s forwards;
65
+ }
66
+
67
+ @keyframes lineAnimation {
68
+ 0% {
69
+ opacity: 0;
70
+ stroke-dashoffset: 6;
71
+ }
72
+ 15% {
73
+ opacity: 1;
74
+ stroke-dashoffset: 6;
75
+ }
76
+ 100% {
77
+ opacity: 1;
78
+ stroke-dashoffset: 0;
79
+ }
80
+ }
81
+ </style>
@@ -0,0 +1,4 @@
1
+ import type { IconProps } from './types.js';
2
+ declare const MailX: import("svelte").Component<IconProps, {}, "">;
3
+ type MailX = ReturnType<typeof MailX>;
4
+ export default MailX;
@@ -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="map-pin-x-inside" 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="map-pin-x-inside-icon"
33
+ class:animate
34
+ >
35
+ <path
36
+ d="M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"
37
+ />
38
+ <path d="m14.5 7.5-5 5" class="diagonal-1" />
39
+ <path d="m9.5 7.5 5 5" class="diagonal-2" />
40
+ </svg>
41
+ </div>
42
+
43
+ <style>
44
+ div {
45
+ display: inline-block;
46
+ }
47
+ .map-pin-x-inside-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
+ .map-pin-x-inside-icon.animate .diagonal-1 {
59
+ opacity: 0;
60
+ animation: lineAnimation 0.3s ease-out forwards;
61
+ }
62
+
63
+ .map-pin-x-inside-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 MapPinXInside: import("svelte").Component<IconProps, {}, "">;
3
+ type MapPinXInside = ReturnType<typeof MapPinXInside>;
4
+ export default MapPinXInside;
@@ -0,0 +1,83 @@
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="map-pin-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="map-pin-x-icon"
33
+ class:animate
34
+ >
35
+ <path
36
+ d="M19.752 11.901A7.78 7.78 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 19 19 0 0 0 .09-.077"
37
+ />
38
+ <circle cx="12" cy="10" r="3" />
39
+ <path d="m21.5 15.5-5 5" class="diagonal-1" />
40
+ <path d="m16.5 15.5 5 5" class="diagonal-2" />
41
+ </svg>
42
+ </div>
43
+
44
+ <style>
45
+ div {
46
+ display: inline-block;
47
+ }
48
+ .map-pin-x-icon {
49
+ overflow: visible;
50
+ }
51
+
52
+ .diagonal-1,
53
+ .diagonal-2 {
54
+ stroke-dasharray: 7.1;
55
+ stroke-dashoffset: 0;
56
+ transition: stroke-dashoffset 0.15s ease-out;
57
+ }
58
+
59
+ .map-pin-x-icon.animate .diagonal-1 {
60
+ opacity: 0;
61
+ animation: lineAnimation 0.3s ease-out forwards;
62
+ }
63
+
64
+ .map-pin-x-icon.animate .diagonal-2 {
65
+ opacity: 0;
66
+ animation: lineAnimation 0.3s ease-out 0.25s forwards;
67
+ }
68
+
69
+ @keyframes lineAnimation {
70
+ 0% {
71
+ opacity: 0;
72
+ stroke-dashoffset: 7.1;
73
+ }
74
+ 15% {
75
+ opacity: 1;
76
+ stroke-dashoffset: 7.1;
77
+ }
78
+ 100% {
79
+ opacity: 1;
80
+ stroke-dashoffset: 0;
81
+ }
82
+ }
83
+ </style>
@@ -0,0 +1,4 @@
1
+ import type { IconProps } from './types.js';
2
+ declare const MapPinX: import("svelte").Component<IconProps, {}, "">;
3
+ type MapPinX = ReturnType<typeof MapPinX>;
4
+ export default MapPinX;
@@ -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="monitor-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="monitor-x-icon"
33
+ class:animate
34
+ >
35
+ <path d="M14.5 7.5l-5 5" class="diagonal-1" />
36
+ <path d="M9.5 7.5l5 5" class="diagonal-2" />
37
+ <rect width="20" height="14" x="2" y="3" rx="2" />
38
+ <path d="M12 17v4" />
39
+ <path d="M8 21h8" />
40
+ </svg>
41
+ </div>
42
+
43
+ <style>
44
+ div {
45
+ display: inline-block;
46
+ }
47
+ .monitor-x-icon {
48
+ overflow: visible;
49
+ }
50
+
51
+ .diagonal-1,
52
+ .diagonal-2 {
53
+ stroke-dasharray: 8;
54
+ stroke-dashoffset: 0;
55
+ transition: stroke-dashoffset 0.15s ease-out;
56
+ }
57
+
58
+ .monitor-x-icon.animate .diagonal-1 {
59
+ opacity: 0;
60
+ animation: lineAnimation 0.3s ease-out forwards;
61
+ }
62
+
63
+ .monitor-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;
72
+ }
73
+ 15% {
74
+ opacity: 1;
75
+ stroke-dashoffset: 8;
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 MonitorX: import("svelte").Component<IconProps, {}, "">;
3
+ type MonitorX = ReturnType<typeof MonitorX>;
4
+ export default MonitorX;
@@ -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="octagon-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="octagon-x-icon"
33
+ class:animate
34
+ >
35
+ <path
36
+ d="M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z"
37
+ />
38
+ <path d="m15 9-6 6" class="diagonal-1" />
39
+ <path d="m9 9 6 6" class="diagonal-2" />
40
+ </svg>
41
+ </div>
42
+
43
+ <style>
44
+ div {
45
+ display: inline-block;
46
+ }
47
+ .octagon-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
+ .octagon-x-icon.animate .diagonal-1 {
59
+ opacity: 0;
60
+ animation: lineAnimation 0.3s ease-out forwards;
61
+ }
62
+
63
+ .octagon-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 OctagonX: import("svelte").Component<IconProps, {}, "">;
3
+ type OctagonX = ReturnType<typeof OctagonX>;
4
+ export default OctagonX;
@@ -0,0 +1,85 @@
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="package-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="package-x-icon"
33
+ class:animate
34
+ >
35
+ <path
36
+ d="M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14"
37
+ />
38
+ <path d="m7.5 4.27 9 5.15" />
39
+ <polyline points="3.29 7 12 12 20.71 7" />
40
+ <line x1="12" x2="12" y1="22" y2="12" />
41
+ <path d="m22 13-5 5" class="diagonal-1" />
42
+ <path d="m17 13 5 5" class="diagonal-2" />
43
+ </svg>
44
+ </div>
45
+
46
+ <style>
47
+ div {
48
+ display: inline-block;
49
+ }
50
+ .package-x-icon {
51
+ overflow: visible;
52
+ }
53
+
54
+ .diagonal-1,
55
+ .diagonal-2 {
56
+ stroke-dasharray: 7.1;
57
+ stroke-dashoffset: 0;
58
+ transition: stroke-dashoffset 0.15s ease-out;
59
+ }
60
+
61
+ .package-x-icon.animate .diagonal-1 {
62
+ opacity: 0;
63
+ animation: lineAnimation 0.3s ease-out forwards;
64
+ }
65
+
66
+ .package-x-icon.animate .diagonal-2 {
67
+ opacity: 0;
68
+ animation: lineAnimation 0.3s ease-out 0.25s forwards;
69
+ }
70
+
71
+ @keyframes lineAnimation {
72
+ 0% {
73
+ opacity: 0;
74
+ stroke-dashoffset: 7.1;
75
+ }
76
+ 15% {
77
+ opacity: 1;
78
+ stroke-dashoffset: 7.1;
79
+ }
80
+ 100% {
81
+ opacity: 1;
82
+ stroke-dashoffset: 0;
83
+ }
84
+ }
85
+ </style>
@@ -0,0 +1,4 @@
1
+ import type { IconProps } from './types.js';
2
+ declare const PackageX: import("svelte").Component<IconProps, {}, "">;
3
+ type PackageX = ReturnType<typeof PackageX>;
4
+ export default PackageX;