@genarou/blazir-icons 1.3.3 → 1.3.5

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 (74) hide show
  1. package/dist/Icon.svelte +21 -23
  2. package/dist/Icon.svelte.d.ts +5 -5
  3. package/dist/IconLazy.svelte +297 -0
  4. package/dist/IconLazy.svelte.d.ts +22 -0
  5. package/dist/icons/ArrowDown.svelte +18 -0
  6. package/dist/icons/ArrowDown.svelte.d.ts +4 -0
  7. package/dist/icons/ArrowLeft.svelte +18 -0
  8. package/dist/icons/ArrowLeft.svelte.d.ts +4 -0
  9. package/dist/icons/ChevronLeft.svelte +15 -0
  10. package/dist/icons/ChevronLeft.svelte.d.ts +4 -0
  11. package/dist/icons/ChevronRight.svelte +15 -0
  12. package/dist/icons/ChevronRight.svelte.d.ts +4 -0
  13. package/dist/icons/ChevronUp.svelte +15 -0
  14. package/dist/icons/ChevronUp.svelte.d.ts +4 -0
  15. package/dist/icons/CloudUpload.svelte +18 -0
  16. package/dist/icons/CloudUpload.svelte.d.ts +4 -0
  17. package/dist/icons/Code.svelte +18 -0
  18. package/dist/icons/Code.svelte.d.ts +4 -0
  19. package/dist/icons/ExternalLink.svelte +18 -0
  20. package/dist/icons/ExternalLink.svelte.d.ts +4 -0
  21. package/dist/icons/Filter.svelte +2 -2
  22. package/dist/icons/Filter.svelte.d.ts +2 -5
  23. package/dist/icons/Gift.svelte +21 -0
  24. package/dist/icons/Gift.svelte.d.ts +7 -0
  25. package/dist/icons/Grid.svelte +18 -0
  26. package/dist/icons/Grid.svelte.d.ts +4 -0
  27. package/dist/icons/GripVertical.svelte +18 -0
  28. package/dist/icons/GripVertical.svelte.d.ts +4 -0
  29. package/dist/icons/Layers.svelte +9 -0
  30. package/dist/icons/Layers.svelte.d.ts +4 -0
  31. package/dist/icons/Maximize.svelte +18 -0
  32. package/dist/icons/Maximize.svelte.d.ts +4 -0
  33. package/dist/icons/MicOff.svelte +9 -0
  34. package/dist/icons/MicOff.svelte.d.ts +4 -0
  35. package/dist/icons/Microphone.svelte +9 -0
  36. package/dist/icons/Microphone.svelte.d.ts +4 -0
  37. package/dist/icons/Minimize.svelte +9 -0
  38. package/dist/icons/Minimize.svelte.d.ts +4 -0
  39. package/dist/icons/Percentage.svelte +9 -0
  40. package/dist/icons/Percentage.svelte.d.ts +4 -0
  41. package/dist/icons/Qr.svelte +21 -0
  42. package/dist/icons/Qr.svelte.d.ts +7 -0
  43. package/dist/icons/Redo.svelte +9 -0
  44. package/dist/icons/Redo.svelte.d.ts +4 -0
  45. package/dist/icons/Sliders.svelte +9 -0
  46. package/dist/icons/Sliders.svelte.d.ts +4 -0
  47. package/dist/icons/Terminal.svelte +21 -0
  48. package/dist/icons/Terminal.svelte.d.ts +7 -0
  49. package/dist/icons/Undo.svelte +9 -0
  50. package/dist/icons/Undo.svelte.d.ts +4 -0
  51. package/dist/icons/UserMinus.svelte +18 -0
  52. package/dist/icons/UserMinus.svelte.d.ts +4 -0
  53. package/dist/icons/UserPlus.svelte +18 -0
  54. package/dist/icons/UserPlus.svelte.d.ts +4 -0
  55. package/dist/icons/UserShield.svelte +21 -0
  56. package/dist/icons/UserShield.svelte.d.ts +7 -0
  57. package/dist/icons/Video.svelte +9 -0
  58. package/dist/icons/Video.svelte.d.ts +4 -0
  59. package/dist/icons/Volume.svelte +9 -0
  60. package/dist/icons/Volume.svelte.d.ts +4 -0
  61. package/dist/icons/VolumeOff.svelte +9 -0
  62. package/dist/icons/VolumeOff.svelte.d.ts +4 -0
  63. package/dist/icons/components.d.ts +200 -0
  64. package/dist/icons/components.js +204 -0
  65. package/dist/icons/lazy-registry.js +46 -1
  66. package/dist/icons/registry.d.ts +37 -3
  67. package/dist/icons/registry.js +67 -2
  68. package/dist/icons-api.d.ts +28 -0
  69. package/dist/icons-api.js +36 -0
  70. package/dist/index.d.ts +2 -0
  71. package/dist/index.js +8 -1
  72. package/package.json +58 -53
  73. package/dist/icons/index.d.ts +0 -2
  74. package/dist/icons/index.js +0 -4
@@ -0,0 +1,21 @@
1
+ <script lang="ts">
2
+ import IconBase from "../IconBase.svelte";
3
+ import type { IconMode, IconProps } from "../types.js";
4
+
5
+ const props: IconProps & { mode?: IconMode } = $props();
6
+ </script>
7
+
8
+ <IconBase
9
+ {...props}
10
+ mode="solid"
11
+ viewBox="0 0 24 24"
12
+ ariaLabel={props.ariaLabel ?? "Regalo"}
13
+ title={props.title ?? "Gift"}
14
+ >
15
+ {#snippet children()}
16
+ <path
17
+ fill="currentColor"
18
+ d="M4 20v-9q-.825 0-1.412-.587T2 9V7q0-.825.588-1.412T4 5h3.2q-.125-.225-.162-.475T7 4q0-1.25.875-2.125T10 1q.575 0 1.075.213T12 1.8q.425-.4.925-.6T14 1q1.25 0 2.125.875T17 4q0 .275-.05.513T16.8 5H20q.825 0 1.413.588T22 7v2q0 .825-.587 1.413T20 11v9q0 .825-.587 1.413T18 22H6q-.825 0-1.412-.587T4 20m9.288-16.713Q13 3.575 13 4t.288.713T14 5t.713-.288T15 4t-.288-.712T14 3t-.712.288M9 4q0 .425.288.713T10 5t.713-.288T11 4t-.288-.712T10 3t-.712.288T9 4M4 7v2h7V7zm7 13v-9H6v9zm2 0h5v-9h-5zm7-11V7h-7v2z"
19
+ />
20
+ {/snippet}
21
+ </IconBase>
@@ -0,0 +1,7 @@
1
+ import type { IconMode, IconProps } from "../types.js";
2
+ type $$ComponentProps = IconProps & {
3
+ mode?: IconMode;
4
+ };
5
+ declare const Gift: import("svelte").Component<$$ComponentProps, {}, "">;
6
+ type Gift = ReturnType<typeof Gift>;
7
+ export default Gift;
@@ -0,0 +1,18 @@
1
+ <script lang="ts">
2
+ import IconBase from "../IconBase.svelte";
3
+ import type { IconProps } from "../types";
4
+ const props: IconProps = $props();
5
+ </script>
6
+
7
+ <IconBase
8
+ {...props}
9
+ mode="solid"
10
+ viewBox="0 0 24 24"
11
+ ariaLabel={props.ariaLabel ?? "Grid"}
12
+ title={props.title ?? ""}
13
+ >
14
+ <path
15
+ fill="currentColor"
16
+ d="M3 3h8v8H3V3zm10 0h8v8h-8V3zM3 13h8v8H3v-8zm10 0h8v8h-8v-8z"
17
+ />
18
+ </IconBase>
@@ -0,0 +1,4 @@
1
+ import type { IconProps } from "../types";
2
+ declare const Grid: import("svelte").Component<IconProps, {}, "">;
3
+ type Grid = ReturnType<typeof Grid>;
4
+ export default Grid;
@@ -0,0 +1,18 @@
1
+ <script lang="ts">
2
+ import IconBase from "../IconBase.svelte";
3
+ import type { IconProps } from "../types";
4
+ const props: IconProps = $props();
5
+ </script>
6
+
7
+ <IconBase
8
+ {...props}
9
+ mode="solid"
10
+ viewBox="0 0 24 24"
11
+ ariaLabel={props.ariaLabel ?? "Drag handle"}
12
+ title={props.title ?? ""}
13
+ >
14
+ <path
15
+ fill="currentColor"
16
+ d="M9 3a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm6 0a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zM9 9a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm6 0a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zM9 15a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm6 0a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z"
17
+ />
18
+ </IconBase>
@@ -0,0 +1,4 @@
1
+ import type { IconProps } from "../types";
2
+ declare const GripVertical: import("svelte").Component<IconProps, {}, "">;
3
+ type GripVertical = ReturnType<typeof GripVertical>;
4
+ export default GripVertical;
@@ -0,0 +1,9 @@
1
+ <script lang="ts">
2
+ import IconBase from "../IconBase.svelte";
3
+ import type { IconProps } from "../types";
4
+ const props: IconProps = $props();
5
+ </script>
6
+
7
+ <IconBase {...props} mode="solid" viewBox="0 0 24 24" ariaLabel={props.ariaLabel ?? "Layers"} title={props.title ?? ""}>
8
+ <path fill="currentColor" d="M11.99 18.54l-7.37-5.73L3 14.07l9 7 9-7-1.63-1.27-7.38 5.74zM12 16l7.36-5.73L21 9l-9-7-9 7 1.63 1.27L12 16z" />
9
+ </IconBase>
@@ -0,0 +1,4 @@
1
+ import type { IconProps } from "../types";
2
+ declare const Layers: import("svelte").Component<IconProps, {}, "">;
3
+ type Layers = ReturnType<typeof Layers>;
4
+ export default Layers;
@@ -0,0 +1,18 @@
1
+ <script lang="ts">
2
+ import IconBase from "../IconBase.svelte";
3
+ import type { IconProps } from "../types";
4
+ const props: IconProps = $props();
5
+ </script>
6
+
7
+ <IconBase
8
+ {...props}
9
+ mode="solid"
10
+ viewBox="0 0 24 24"
11
+ ariaLabel={props.ariaLabel ?? "Maximize"}
12
+ title={props.title ?? ""}
13
+ >
14
+ <path
15
+ fill="currentColor"
16
+ d="M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z"
17
+ />
18
+ </IconBase>
@@ -0,0 +1,4 @@
1
+ import type { IconProps } from "../types";
2
+ declare const Maximize: import("svelte").Component<IconProps, {}, "">;
3
+ type Maximize = ReturnType<typeof Maximize>;
4
+ export default Maximize;
@@ -0,0 +1,9 @@
1
+ <script lang="ts">
2
+ import IconBase from "../IconBase.svelte";
3
+ import type { IconProps } from "../types";
4
+ const props: IconProps = $props();
5
+ </script>
6
+
7
+ <IconBase {...props} mode="solid" viewBox="0 0 24 24" ariaLabel={props.ariaLabel ?? "Microphone off"} title={props.title ?? ""}>
8
+ <path fill="currentColor" d="M19 11h-1.7c0 .74-.16 1.43-.43 2.05l1.23 1.23c.56-.98.9-2.09.9-3.28zm-4.02.17c0-.06.02-.11.02-.17V5c0-1.66-1.34-3-3-3S9 3.34 9 5v.18L14.98 11.17zM4.27 3L3 4.27l6.01 6.01V11c0 1.66 1.33 3 2.99 3 .22 0 .44-.03.65-.08l1.66 1.66c-.71.33-1.5.52-2.31.52-2.76 0-5.3-2.1-5.3-5.1H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c.91-.13 1.77-.45 2.54-.9L19.73 21 21 19.73 4.27 3z" />
9
+ </IconBase>
@@ -0,0 +1,4 @@
1
+ import type { IconProps } from "../types";
2
+ declare const MicOff: import("svelte").Component<IconProps, {}, "">;
3
+ type MicOff = ReturnType<typeof MicOff>;
4
+ export default MicOff;
@@ -0,0 +1,9 @@
1
+ <script lang="ts">
2
+ import IconBase from "../IconBase.svelte";
3
+ import type { IconProps } from "../types";
4
+ const props: IconProps = $props();
5
+ </script>
6
+
7
+ <IconBase {...props} mode="solid" viewBox="0 0 24 24" ariaLabel={props.ariaLabel ?? "Microphone"} title={props.title ?? ""}>
8
+ <path fill="currentColor" d="M12 14c1.66 0 2.99-1.34 2.99-3L15 5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm5.3-3c0 3-2.54 5.1-5.3 5.1S6.7 14 6.7 11H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z" />
9
+ </IconBase>
@@ -0,0 +1,4 @@
1
+ import type { IconProps } from "../types";
2
+ declare const Microphone: import("svelte").Component<IconProps, {}, "">;
3
+ type Microphone = ReturnType<typeof Microphone>;
4
+ export default Microphone;
@@ -0,0 +1,9 @@
1
+ <script lang="ts">
2
+ import IconBase from "../IconBase.svelte";
3
+ import type { IconProps } from "../types";
4
+ const props: IconProps = $props();
5
+ </script>
6
+
7
+ <IconBase {...props} mode="solid" viewBox="0 0 24 24" ariaLabel={props.ariaLabel ?? "Minimize"} title={props.title ?? ""}>
8
+ <path fill="currentColor" d="M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z" />
9
+ </IconBase>
@@ -0,0 +1,4 @@
1
+ import type { IconProps } from "../types";
2
+ declare const Minimize: import("svelte").Component<IconProps, {}, "">;
3
+ type Minimize = ReturnType<typeof Minimize>;
4
+ export default Minimize;
@@ -0,0 +1,9 @@
1
+ <script lang="ts">
2
+ import IconBase from "../IconBase.svelte";
3
+ import type { IconProps } from "../types";
4
+ const props: IconProps = $props();
5
+ </script>
6
+
7
+ <IconBase {...props} mode="solid" viewBox="0 0 24 24" ariaLabel={props.ariaLabel ?? "Percentage"} title={props.title ?? ""}>
8
+ <path fill="currentColor" d="M18.5 3.5l2 2-15 15-2-2 15-15zM7 4C5.34 4 4 5.34 4 7s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm10 10c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" />
9
+ </IconBase>
@@ -0,0 +1,4 @@
1
+ import type { IconProps } from "../types";
2
+ declare const Percentage: import("svelte").Component<IconProps, {}, "">;
3
+ type Percentage = ReturnType<typeof Percentage>;
4
+ export default Percentage;
@@ -0,0 +1,21 @@
1
+ <script lang="ts">
2
+ import IconBase from "../IconBase.svelte";
3
+ import type { IconMode, IconProps } from "../types.js";
4
+
5
+ const props: IconProps & { mode?: IconMode } = $props();
6
+ </script>
7
+
8
+ <IconBase
9
+ {...props}
10
+ mode={props.mode ?? "solid"}
11
+ viewBox="0 0 24 24"
12
+ ariaLabel={props.ariaLabel ?? "Código QR"}
13
+ title={props.title ?? "QR Code"}
14
+ >
15
+ {#snippet children()}
16
+ <path
17
+ fill="currentColor"
18
+ d="M13 21v-2h2v2zm-2-2v-5h2v5zm8-3v-4h2v4zm-2-4v-2h2v2zM5 14v-2h2v2zm-2-2v-2h2v2zm9-7V3h2v2zM4.5 7.5h3v-3h-3zM3 8V4q0-.425.288-.712T4 3h4q.425 0 .713.288T9 4v4q0 .425-.288.713T8 9H4q-.425 0-.712-.288T3 8m1.5 11.5h3v-3h-3zM3 20v-4q0-.425.288-.712T4 15h4q.425 0 .713.288T9 16v4q0 .425-.288.713T8 21H4q-.425 0-.712-.288T3 20M16.5 7.5h3v-3h-3zM15 8V4q0-.425.288-.712T16 3h4q.425 0 .713.288T21 4v4q0 .425-.288.713T20 9h-4q-.425 0-.712-.288T15 8m2 13v-3h-2v-2h4v3h2v2zm-4-7v-2h4v2zm-4 0v-2H7v-2h6v2h-2v2zm1-5V5h2v2h2v2zM5.25 6.75v-1.5h1.5v1.5zm0 12v-1.5h1.5v1.5zm12-12v-1.5h1.5v1.5z"
19
+ />
20
+ {/snippet}
21
+ </IconBase>
@@ -0,0 +1,7 @@
1
+ import type { IconMode, IconProps } from "../types.js";
2
+ type $$ComponentProps = IconProps & {
3
+ mode?: IconMode;
4
+ };
5
+ declare const Qr: import("svelte").Component<$$ComponentProps, {}, "">;
6
+ type Qr = ReturnType<typeof Qr>;
7
+ export default Qr;
@@ -0,0 +1,9 @@
1
+ <script lang="ts">
2
+ import IconBase from "../IconBase.svelte";
3
+ import type { IconProps } from "../types";
4
+ const props: IconProps = $props();
5
+ </script>
6
+
7
+ <IconBase {...props} mode="solid" viewBox="0 0 24 24" ariaLabel={props.ariaLabel ?? "Redo"} title={props.title ?? ""}>
8
+ <path fill="currentColor" d="M11 3a9 9 0 0 1 9 9h3l-3.89 3.89-.07.14L15 12h3c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7c1.93 0 3.68-.79 4.94-2.06l1.42 1.42A8.954 8.954 0 0 1 11 21a9 9 0 0 1 0-18z" />
9
+ </IconBase>
@@ -0,0 +1,4 @@
1
+ import type { IconProps } from "../types";
2
+ declare const Redo: import("svelte").Component<IconProps, {}, "">;
3
+ type Redo = ReturnType<typeof Redo>;
4
+ export default Redo;
@@ -0,0 +1,9 @@
1
+ <script lang="ts">
2
+ import IconBase from "../IconBase.svelte";
3
+ import type { IconProps } from "../types";
4
+ const props: IconProps = $props();
5
+ </script>
6
+
7
+ <IconBase {...props} mode="solid" viewBox="0 0 24 24" ariaLabel={props.ariaLabel ?? "Sliders"} title={props.title ?? ""}>
8
+ <path fill="currentColor" d="M3 9h4.17C7.58 10.17 8.69 11 10 11c1.31 0 2.42-.83 2.83-2H21V7h-8.17C12.42 5.83 11.31 5 10 5 8.69 5 7.58 5.83 7.17 7H3v2zm8-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm10 8h-4.17C16.42 13.83 15.31 13 14 13c-1.31 0-2.42.83-2.83 2H3v2h8.17C11.58 18.17 12.69 19 14 19c1.31 0 2.42-.83 2.83-2H21v-2zm-7 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" />
9
+ </IconBase>
@@ -0,0 +1,4 @@
1
+ import type { IconProps } from "../types";
2
+ declare const Sliders: import("svelte").Component<IconProps, {}, "">;
3
+ type Sliders = ReturnType<typeof Sliders>;
4
+ export default Sliders;
@@ -0,0 +1,21 @@
1
+ <script lang="ts">
2
+ import IconBase from "../IconBase.svelte";
3
+ import type { IconMode, IconProps } from "../types.js";
4
+
5
+ const props: IconProps & { mode?: IconMode } = $props();
6
+ </script>
7
+
8
+ <IconBase
9
+ {...props}
10
+ mode="solid"
11
+ viewBox="0 0 24 24"
12
+ ariaLabel={props.ariaLabel ?? "Terminal"}
13
+ title={props.title ?? "Terminal"}
14
+ >
15
+ {#snippet children()}
16
+ <path
17
+ fill="currentColor"
18
+ d="M4 20q-.825 0-1.412-.587T2 18V6q0-.825.588-1.412T4 4h16q.825 0 1.413.588T22 6v12q0 .825-.587 1.413T20 20zm0-2h16V8H4zm4.675-5l-1.9-1.9q-.3-.3-.288-.7t.313-.7q.3-.275.7-.287t.7.287l2.6 2.6q.3.3.3.7t-.3.7l-2.6 2.6q-.275.275-.687.288T6.8 16.3q-.275-.275-.275-.7t.275-.7zM13 17q-.425 0-.712-.288T12 16t.288-.712T13 15h4q.425 0 .713.288T18 16t-.288.713T17 17z"
19
+ />
20
+ {/snippet}
21
+ </IconBase>
@@ -0,0 +1,7 @@
1
+ import type { IconMode, IconProps } from "../types.js";
2
+ type $$ComponentProps = IconProps & {
3
+ mode?: IconMode;
4
+ };
5
+ declare const Terminal: import("svelte").Component<$$ComponentProps, {}, "">;
6
+ type Terminal = ReturnType<typeof Terminal>;
7
+ export default Terminal;
@@ -0,0 +1,9 @@
1
+ <script lang="ts">
2
+ import IconBase from "../IconBase.svelte";
3
+ import type { IconProps } from "../types";
4
+ const props: IconProps = $props();
5
+ </script>
6
+
7
+ <IconBase {...props} mode="solid" viewBox="0 0 24 24" ariaLabel={props.ariaLabel ?? "Undo"} title={props.title ?? ""}>
8
+ <path fill="currentColor" d="M13 3a9 9 0 0 0-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42A8.954 8.954 0 0 0 13 21a9 9 0 0 0 0-18z" />
9
+ </IconBase>
@@ -0,0 +1,4 @@
1
+ import type { IconProps } from "../types";
2
+ declare const Undo: import("svelte").Component<IconProps, {}, "">;
3
+ type Undo = ReturnType<typeof Undo>;
4
+ export default Undo;
@@ -0,0 +1,18 @@
1
+ <script lang="ts">
2
+ import IconBase from "../IconBase.svelte";
3
+ import type { IconProps } from "../types";
4
+ const props: IconProps = $props();
5
+ </script>
6
+
7
+ <IconBase
8
+ {...props}
9
+ mode="solid"
10
+ viewBox="0 0 24 24"
11
+ ariaLabel={props.ariaLabel ?? "Remove user"}
12
+ title={props.title ?? ""}
13
+ >
14
+ <path
15
+ fill="currentColor"
16
+ d="M14 8c0 2.21-1.79 4-4 4S6 10.21 6 8s1.79-4 4-4 4 1.79 4 4zm-4 6c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm9-1h-6v-2h6v2z"
17
+ />
18
+ </IconBase>
@@ -0,0 +1,4 @@
1
+ import type { IconProps } from "../types";
2
+ declare const UserMinus: import("svelte").Component<IconProps, {}, "">;
3
+ type UserMinus = ReturnType<typeof UserMinus>;
4
+ export default UserMinus;
@@ -0,0 +1,18 @@
1
+ <script lang="ts">
2
+ import IconBase from "../IconBase.svelte";
3
+ import type { IconProps } from "../types";
4
+ const props: IconProps = $props();
5
+ </script>
6
+
7
+ <IconBase
8
+ {...props}
9
+ mode="solid"
10
+ viewBox="0 0 24 24"
11
+ ariaLabel={props.ariaLabel ?? "Add user"}
12
+ title={props.title ?? ""}
13
+ >
14
+ <path
15
+ fill="currentColor"
16
+ d="M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-9-2V7H4v3H1v2h3v3h2v-3h3v-2H6zm9 4c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
17
+ />
18
+ </IconBase>
@@ -0,0 +1,4 @@
1
+ import type { IconProps } from "../types";
2
+ declare const UserPlus: import("svelte").Component<IconProps, {}, "">;
3
+ type UserPlus = ReturnType<typeof UserPlus>;
4
+ export default UserPlus;
@@ -0,0 +1,21 @@
1
+ <script lang="ts">
2
+ import IconBase from "../IconBase.svelte";
3
+ import type { IconMode, IconProps } from "../types.js";
4
+
5
+ const props: IconProps & { mode?: IconMode } = $props();
6
+ </script>
7
+
8
+ <IconBase
9
+ {...props}
10
+ mode={props.mode ?? "solid"}
11
+ viewBox="0 0 24 24"
12
+ ariaLabel={props.ariaLabel ?? "Usuario protegido"}
13
+ title={props.title ?? "Protected User"}
14
+ >
15
+ {#snippet children()}
16
+ <path
17
+ fill="currentColor"
18
+ d="M18 22q-1.825-.45-2.912-2T14 16.55V14l4-2l4 2v2.55q0 1.9-1.088 3.45T18 22M4 20v-2.8q0-.85.438-1.562T5.6 14.55q1.55-.775 3.15-1.162T12 13v3.55q0 .9.188 1.775T12.775 20zm5.175-9.175Q8 9.65 8 8t1.175-2.825T12 4t2.825 1.175T16 8t-1.175 2.825T12 12t-2.825-1.175"
19
+ />
20
+ {/snippet}
21
+ </IconBase>
@@ -0,0 +1,7 @@
1
+ import type { IconMode, IconProps } from "../types.js";
2
+ type $$ComponentProps = IconProps & {
3
+ mode?: IconMode;
4
+ };
5
+ declare const UserShield: import("svelte").Component<$$ComponentProps, {}, "">;
6
+ type UserShield = ReturnType<typeof UserShield>;
7
+ export default UserShield;
@@ -0,0 +1,9 @@
1
+ <script lang="ts">
2
+ import IconBase from "../IconBase.svelte";
3
+ import type { IconProps } from "../types";
4
+ const props: IconProps = $props();
5
+ </script>
6
+
7
+ <IconBase {...props} mode="solid" viewBox="0 0 24 24" ariaLabel={props.ariaLabel ?? "Video"} title={props.title ?? ""}>
8
+ <path fill="currentColor" d="M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4z" />
9
+ </IconBase>
@@ -0,0 +1,4 @@
1
+ import type { IconProps } from "../types";
2
+ declare const Video: import("svelte").Component<IconProps, {}, "">;
3
+ type Video = ReturnType<typeof Video>;
4
+ export default Video;
@@ -0,0 +1,9 @@
1
+ <script lang="ts">
2
+ import IconBase from "../IconBase.svelte";
3
+ import type { IconProps } from "../types";
4
+ const props: IconProps = $props();
5
+ </script>
6
+
7
+ <IconBase {...props} mode="solid" viewBox="0 0 24 24" ariaLabel={props.ariaLabel ?? "Volume"} title={props.title ?? ""}>
8
+ <path fill="currentColor" d="M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z" />
9
+ </IconBase>
@@ -0,0 +1,4 @@
1
+ import type { IconProps } from "../types";
2
+ declare const Volume: import("svelte").Component<IconProps, {}, "">;
3
+ type Volume = ReturnType<typeof Volume>;
4
+ export default Volume;
@@ -0,0 +1,9 @@
1
+ <script lang="ts">
2
+ import IconBase from "../IconBase.svelte";
3
+ import type { IconProps } from "../types";
4
+ const props: IconProps = $props();
5
+ </script>
6
+
7
+ <IconBase {...props} mode="solid" viewBox="0 0 24 24" ariaLabel={props.ariaLabel ?? "Volume off"} title={props.title ?? ""}>
8
+ <path fill="currentColor" d="M16.5 12c0-1.77-1.02-3.29-2.5-4.03v2.21l2.45 2.45c.03-.2.05-.41.05-.63zm2.5 0c0 .94-.2 1.82-.54 2.64l1.51 1.51C20.63 14.91 21 13.5 21 12c0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zM4.27 3L3 4.27 7.73 9H3v6h4l5 5v-6.73l4.25 4.25c-.67.52-1.42.93-2.25 1.18v2.06c1.38-.31 2.63-.95 3.69-1.81L19.73 21 21 19.73l-9-9L4.27 3zM12 4L9.91 6.09 12 8.18V4z" />
9
+ </IconBase>
@@ -0,0 +1,4 @@
1
+ import type { IconProps } from "../types";
2
+ declare const VolumeOff: import("svelte").Component<IconProps, {}, "">;
3
+ type VolumeOff = ReturnType<typeof VolumeOff>;
4
+ export default VolumeOff;