@genarou/blazir-icons 1.3.2 → 1.3.4

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 (70) hide show
  1. package/LICENSE +67 -42
  2. package/dist/icons/Ai.svelte +34 -6
  3. package/dist/icons/Alternate.svelte +15 -8
  4. package/dist/icons/Alternate.svelte.d.ts +5 -2
  5. package/dist/icons/AnimatedArrowLeft.svelte +29 -11
  6. package/dist/icons/AnimatedArrowLeft.svelte.d.ts +5 -2
  7. package/dist/icons/Archive.svelte +21 -0
  8. package/dist/icons/Archive.svelte.d.ts +7 -0
  9. package/dist/icons/Attachment.svelte +10 -10
  10. package/dist/icons/Attachment.svelte.d.ts +5 -2
  11. package/dist/icons/Bank.svelte +16 -8
  12. package/dist/icons/Bank.svelte.d.ts +5 -2
  13. package/dist/icons/Bell.svelte +11 -8
  14. package/dist/icons/Bell.svelte.d.ts +5 -2
  15. package/dist/icons/Box.svelte +12 -10
  16. package/dist/icons/Box.svelte.d.ts +5 -2
  17. package/dist/icons/BoxAdd.svelte +11 -8
  18. package/dist/icons/BoxAdd.svelte.d.ts +5 -2
  19. package/dist/icons/Buy.svelte +11 -10
  20. package/dist/icons/Buy.svelte.d.ts +5 -2
  21. package/dist/icons/Calendar.svelte +12 -9
  22. package/dist/icons/Calendar.svelte.d.ts +5 -2
  23. package/dist/icons/CalendarEdit.svelte +5 -5
  24. package/dist/icons/CalendarPlus.svelte +11 -9
  25. package/dist/icons/CalendarPlus.svelte.d.ts +5 -2
  26. package/dist/icons/Cart.svelte +13 -10
  27. package/dist/icons/Connect.svelte +21 -0
  28. package/dist/icons/Connect.svelte.d.ts +7 -0
  29. package/dist/icons/Dashboard.svelte +10 -7
  30. package/dist/icons/Dashboard.svelte.d.ts +5 -2
  31. package/dist/icons/DashboardOutlined.svelte +14 -12
  32. package/dist/icons/DashboardOutlined.svelte.d.ts +5 -2
  33. package/dist/icons/Eye.svelte +42 -29
  34. package/dist/icons/Eye.svelte.d.ts +5 -2
  35. package/dist/icons/EyeOff.svelte +51 -51
  36. package/dist/icons/EyeOff.svelte.d.ts +5 -2
  37. package/dist/icons/Filter.svelte +9 -6
  38. package/dist/icons/Filter.svelte.d.ts +1 -1
  39. package/dist/icons/FilterOutline.svelte +8 -7
  40. package/dist/icons/FilterOutline.svelte.d.ts +5 -2
  41. package/dist/icons/HardDrive.svelte +21 -0
  42. package/dist/icons/HardDrive.svelte.d.ts +7 -0
  43. package/dist/icons/Historic.svelte +21 -0
  44. package/dist/icons/Historic.svelte.d.ts +7 -0
  45. package/dist/icons/Home.svelte +11 -7
  46. package/dist/icons/Home.svelte.d.ts +5 -2
  47. package/dist/icons/MagnifiyingGlass.svelte +12 -8
  48. package/dist/icons/MagnifiyingGlass.svelte.d.ts +5 -2
  49. package/dist/icons/Pause.svelte +21 -0
  50. package/dist/icons/Pause.svelte.d.ts +7 -0
  51. package/dist/icons/Play.svelte +21 -0
  52. package/dist/icons/Play.svelte.d.ts +7 -0
  53. package/dist/icons/Process.svelte +21 -0
  54. package/dist/icons/Process.svelte.d.ts +7 -0
  55. package/dist/icons/Qr.svelte +21 -0
  56. package/dist/icons/Qr.svelte.d.ts +7 -0
  57. package/dist/icons/Settings.svelte +16 -8
  58. package/dist/icons/Settings.svelte.d.ts +5 -2
  59. package/dist/icons/SyncPhoto.svelte +21 -0
  60. package/dist/icons/SyncPhoto.svelte.d.ts +7 -0
  61. package/dist/icons/UserShield.svelte +21 -0
  62. package/dist/icons/UserShield.svelte.d.ts +7 -0
  63. package/dist/icons/Work.svelte +21 -0
  64. package/dist/icons/Work.svelte.d.ts +7 -0
  65. package/dist/icons/lazy-registry.js +12 -1
  66. package/dist/icons/registry.d.ts +87 -18
  67. package/dist/icons/registry.js +24 -1
  68. package/dist/icons-api.d.ts +11 -0
  69. package/dist/icons-api.js +11 -0
  70. package/package.json +13 -12
@@ -1,17 +1,21 @@
1
1
  <script lang="ts">
2
2
  import IconBase from "../IconBase.svelte";
3
- import type { IconProps } from "../types";
4
- const props: IconProps = $props();
3
+ import type { IconMode, IconProps } from "../types.js";
4
+
5
+ const props: IconProps & { mode?: IconMode } = $props();
5
6
  </script>
6
7
 
7
8
  <IconBase
8
9
  {...props}
9
10
  mode="solid"
10
11
  viewBox="0 0 24 24"
11
- ariaLabel={props.ariaLabel ?? "Home"}
12
- title={props.title ?? ""}
12
+ ariaLabel={props.ariaLabel ?? "Inicio"}
13
+ title={props.title ?? "Home"}
13
14
  >
14
- <path
15
- d="M20 19v-8.5a1 1 0 0 0-.4-.8l-7-5.25a1 1 0 0 0-1.2 0l-7 5.25a1 1 0 0 0-.4.8V19a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v3a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1"
16
- />
15
+ {#snippet children()}
16
+ <path
17
+ fill="currentColor"
18
+ d="M12.7 2.25c-.4-.3-1-.3-1.4 0l-8.5 6.4c-.5.4-.8 1-.8 1.6V19c0 1.1.9 2 2 2h5v-5c0-.6.4-1 1-1h4c.6 0 1 .4 1 1v5h5c1.1 0 2-.9 2-2V10.25c0-.6-.3-1.2-.8-1.6l-8.5-6.4z"
19
+ />
20
+ {/snippet}
17
21
  </IconBase>
@@ -1,4 +1,7 @@
1
- import type { IconProps } from "../types";
2
- declare const Home: import("svelte").Component<IconProps, {}, "">;
1
+ import type { IconMode, IconProps } from "../types.js";
2
+ type $$ComponentProps = IconProps & {
3
+ mode?: IconMode;
4
+ };
5
+ declare const Home: import("svelte").Component<$$ComponentProps, {}, "">;
3
6
  type Home = ReturnType<typeof Home>;
4
7
  export default Home;
@@ -1,18 +1,22 @@
1
- <!-- src/lib/icons/SearchSmall.svelte -->
2
1
  <script lang="ts">
3
2
  import IconBase from "../IconBase.svelte";
4
- import type { IconProps } from "../types";
5
- const props: IconProps = $props();
3
+ import type { IconMode, IconProps } from "../types.js";
4
+
5
+ const props: IconProps & { mode?: IconMode } = $props();
6
6
  </script>
7
7
 
8
8
  <IconBase
9
9
  {...props}
10
10
  mode="solid"
11
11
  viewBox="0 0 8 8"
12
- ariaLabel={props.ariaLabel ?? "SearchSmall"}
13
- title={props.title ?? ""}
12
+ ariaLabel={props.ariaLabel ?? "Buscar"}
13
+ title={props.title ?? "Search Small"}
14
14
  >
15
- <path
16
- d="M3.5 0C1.57 0 0 1.57 0 3.5S1.57 7 3.5 7c.59 0 1.17-.14 1.66-.41a1 1 0 0 0 .13.13l1 1a1.02 1.02 0 1 0 1.44-1.44l-1-1a1 1 0 0 0-.16-.13c.27-.49.44-1.06.44-1.66c0-1.93-1.57-3.5-3.5-3.5zm0 1C4.89 1 6 2.11 6 3.5c0 .66-.24 1.27-.66 1.72l-.03.03a1 1 0 0 0-.13.13c-.44.4-1.04.63-1.69.63c-1.39 0-2.5-1.11-2.5-2.5s1.11-2.5 2.5-2.5z"
17
- />
15
+ {#snippet children()}
16
+ <path
17
+ fill="currentColor"
18
+ d="M3.5 0C1.57 0 0 1.57 0 3.5S1.57 7 3.5 7c.74 0 1.42-.23 1.97-.63l1.1 1.1c.3.3.77.3 1.06 0 .3-.3.3-.77 0-1.06l-1.1-1.1c.4-.55.63-1.23.63-1.97C7.16 1.57 5.43 0 3.5 0zm0 1.5c1.1 0 2 0.9 2 2s-0.9 2-2 2-2-0.9-2-2 0.9-2 2-2z"
19
+ />
20
+ {/snippet}
18
21
  </IconBase>
22
+
@@ -1,4 +1,7 @@
1
- import type { IconProps } from "../types";
2
- declare const MagnifiyingGlass: import("svelte").Component<IconProps, {}, "">;
1
+ import type { IconMode, IconProps } from "../types.js";
2
+ type $$ComponentProps = IconProps & {
3
+ mode?: IconMode;
4
+ };
5
+ declare const MagnifiyingGlass: import("svelte").Component<$$ComponentProps, {}, "">;
3
6
  type MagnifiyingGlass = ReturnType<typeof MagnifiyingGlass>;
4
7
  export default MagnifiyingGlass;
@@ -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 ?? "Pausar"}
13
+ title={props.title ?? "Pause"}
14
+ >
15
+ {#snippet children()}
16
+ <path
17
+ fill="currentColor"
18
+ d="M16 19q-.825 0-1.412-.587T14 17V7q0-.825.588-1.412T16 5t1.413.588T18 7v10q0 .825-.587 1.413T16 19m-8 0q-.825 0-1.412-.587T6 17V7q0-.825.588-1.412T8 5t1.413.588T10 7v10q0 .825-.587 1.413T8 19"
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 Pause: import("svelte").Component<$$ComponentProps, {}, "">;
6
+ type Pause = ReturnType<typeof Pause>;
7
+ export default Pause;
@@ -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 ?? "Reproducir"}
13
+ title={props.title ?? "Play"}
14
+ >
15
+ {#snippet children()}
16
+ <path
17
+ fill="currentColor"
18
+ d="M8 17.175V6.825q0-.425.3-.713t.7-.287q.125 0 .263.037t.262.113l8.15 5.175q.225.15.338.375t.112.475t-.112.475t-.338.375l-8.15 5.175q-.125.075-.262.113T9 18.175q-.4 0-.7-.288t-.3-.712"
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 Play: import("svelte").Component<$$ComponentProps, {}, "">;
6
+ type Play = ReturnType<typeof Play>;
7
+ export default Play;
@@ -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 ?? "Conexiones"}
13
+ title={props.title ?? "Connections"}
14
+ >
15
+ {#snippet children()}
16
+ <path
17
+ fill="currentColor"
18
+ d="M16 20q-.425 0-.712-.288T15 19v-1h-3q-.425 0-.712-.288T11 17v-4H9v1q0 .425-.288.713T8 15H3q-.425 0-.712-.288T2 14v-4q0-.425.288-.712T3 9h5q.425 0 .713.288T9 10v1h2V7q0-.425.288-.712T12 6h3V5q0-.425.288-.712T16 4h5q.425 0 .713.288T22 5v4q0 .425-.288.713T21 10h-5q-.425 0-.712-.288T15 9V8h-2v8h2v-1q0-.425.288-.712T16 14h5q.425 0 .713.288T22 15v4q0 .425-.288.713T21 20z"
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 Process: import("svelte").Component<$$ComponentProps, {}, "">;
6
+ type Process = ReturnType<typeof Process>;
7
+ export default Process;
@@ -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;
@@ -1,13 +1,21 @@
1
- <!-- src/lib/icons/Settings.svelte -->
2
1
  <script lang="ts">
3
2
  import IconBase from "../IconBase.svelte";
4
- import type { IconProps } from "../types";
5
- const props: IconProps = $props();
3
+ import type { IconMode, IconProps } from "../types.js";
4
+
5
+ const props: IconProps & { mode?: IconMode } = $props();
6
6
  </script>
7
7
 
8
- <IconBase {...props} mode="solid" viewBox="0 0 24 24">
9
- <path
10
- fill="currentColor"
11
- d="M19.5 12c0-.23-.01-.45-.03-.68l1.86-1.41c.4-.3.51-.86.26-1.3l-1.87-3.23a.987.987 0 0 0-1.25-.42l-2.15.91c-.37-.26-.76-.49-1.17-.68l-.29-2.31c-.06-.5-.49-.88-.99-.88h-3.73c-.51 0-.94.38-1 .88l-.29 2.31c-.41.19-.8.42-1.17.68l-2.15-.91c-.46-.2-1-.02-1.25.42L2.41 8.62c-.25.44-.14.99.26 1.3l1.86 1.41a7.3 7.3 0 0 0 0 1.35l-1.86 1.41c-.4.3-.51.86-.26 1.3l1.87 3.23c.25.44.79.62 1.25.42l2.15-.91c.37.26.76.49 1.17.68l.29 2.31c.06.5.49.88.99.88h3.73c.5 0 .93-.38.99-.88l.29-2.31c.41-.19.8-.42 1.17-.68l2.15.91c.46.2 1 .02 1.25-.42l1.87-3.23c.25-.44.14-.99-.26-1.3l-1.86-1.41c.03-.23.04-.45.04-.68m-7.46 3.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5s-1.57 3.5-3.5 3.5"
12
- />
8
+ <IconBase
9
+ {...props}
10
+ mode="solid"
11
+ viewBox="0 0 24 24"
12
+ ariaLabel={props.ariaLabel ?? "Configuración"}
13
+ title={props.title ?? "Settings"}
14
+ >
15
+ {#snippet children()}
16
+ <path
17
+ fill="currentColor"
18
+ d="M19.14 12.94c.04-.3.06-.61.06-.94s-.02-.64-.06-.94l2.03-1.58c.18-.14.23-.41.12-.61l-1.92-3.32c-.12-.22-.37-.29-.59-.22l-2.39.96c-.5-.38-1.03-.7-1.62-.94l-.36-2.54a.49.49 0 0 0-.48-.41h-3.84a.49.49 0 0 0-.48.41l-.36 2.54c-.59.24-1.13.57-1.62.94l-2.39-.96c-.22-.07-.47 0-.59.22L2.65 8.87c-.11.21-.06.47.12.61l2.03 1.58c-.04.3-.06.61-.06.94s.02.64.06.94l-2.03 1.58c-.18.14-.23.41-.12.61l1.92 3.32c.12.22.37.29.59.22l2.39-.96c.5.38 1.03.7 1.62.94l.36 2.54c.05.24.27.41.48.41h3.84c.21 0 .43-.17.48-.41l.36-2.54c.59-.24 1.13-.57 1.62-.94l2.39.96c.22.07.47 0 .59-.22l1.92-3.32c.11-.21.06-.47-.12-.61l-2.03-1.58zM12 15.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5s-1.57 3.5-3.5 3.5z"
19
+ />
20
+ {/snippet}
13
21
  </IconBase>
@@ -1,4 +1,7 @@
1
- import type { IconProps } from "../types";
2
- declare const Settings: import("svelte").Component<IconProps, {}, "">;
1
+ import type { IconMode, IconProps } from "../types.js";
2
+ type $$ComponentProps = IconProps & {
3
+ mode?: IconMode;
4
+ };
5
+ declare const Settings: import("svelte").Component<$$ComponentProps, {}, "">;
3
6
  type Settings = ReturnType<typeof Settings>;
4
7
  export default Settings;
@@ -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 ?? "Cámara con sincronización"}
13
+ title={props.title ?? "Camera Sync"}
14
+ >
15
+ {#snippet children()}
16
+ <path
17
+ fill="currentColor"
18
+ d="M8 17q-.825 0-1.412-.587T6 15V9q0-.825.588-1.412T8 7h1l.7-.7q.15-.15.338-.225T10.425 6h3.15q.2 0 .388.075t.337.225l.7.7h1q.825 0 1.412.588T18 9v6q0 .825-.587 1.413T16 17zm4-3q.825 0 1.413-.587T14 12t-.587-1.412T12 10t-1.412.588T10 12t.588 1.413T12 14m0 10q-4.4 0-7.712-2.762T.174 14.275Q.1 13.85.337 13.5T1 13.1t.75.213t.4.687q.65 3.275 3.113 5.475T11.1 21.95l-.85-.85q-.275-.275-.275-.7t.275-.7t.7-.275t.7.275l3.3 3.3q.175.175.113.4t-.288.275q-.675.175-1.362.25T12 24m0-24q4.4 0 7.713 2.75t4.112 6.975q.075.425-.162.775t-.663.4t-.75-.213t-.4-.687q-.65-3.275-3.113-5.475T12.9 2.05l.85.85q.275.275.275.7t-.275.7t-.7.275t-.7-.275L9.05 1Q8.875.825 8.938.6t.287-.275Q9.9.15 10.588.075T12 0"
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 SyncPhoto: import("svelte").Component<$$ComponentProps, {}, "">;
6
+ type SyncPhoto = ReturnType<typeof SyncPhoto>;
7
+ export default SyncPhoto;
@@ -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,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 ?? "Archivo con configuración"}
13
+ title={props.title ?? "File Settings"}
14
+ >
15
+ {#snippet children()}
16
+ <path
17
+ fill="currentColor"
18
+ d="M7 11h3q.425 0 .713-.288T11 10t-.288-.712T10 9H7q-.425 0-.712.288T6 10t.288.713T7 11m-3 9q-.825 0-1.412-.587T2 18V6q0-.825.588-1.412T4 4h17.025q.275 0 .45.15t.175.4q0 .275-.187.438t-.438.112q-.2-.05-.462-.075T20 5q-2.075 0-3.537 1.463T15 10q0 .55.1 1.05t.3.95H14q-1.25 0-2.125.875T11 15v1q-.7.5-1.175 1.213t-.675 1.562q-.125.5-.5.863T7.775 20zm10 1q.425 0 .713-.288T15 20t-.288-.712T14 19t-.712.288T13 20t.288.713T14 21m6-10q.425 0 .713-.288T21 10t-.288-.712T20 9t-.712.288T19 10t.288.713T20 11m-8.125 11.125Q11 21.25 11 20q0-.975.563-1.75T13 17.175V15q0-.425.288-.712T14 14h5v-1.175q-.875-.3-1.437-1.075T17 10q0-1.25.875-2.125T20 7t2.125.875T23 10q0 .975-.562 1.75T21 12.825V15q0 .425-.288.713T20 16h-5v1.175q.875.3 1.438 1.075T17 20q0 1.25-.875 2.125T14 23t-2.125-.875M10 15q.425 0 .713-.288T11 14t-.288-.712T10 13H7q-.425 0-.712.288T6 14t.288.713T7 15z"
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 Work: import("svelte").Component<$$ComponentProps, {}, "">;
6
+ type Work = ReturnType<typeof Work>;
7
+ export default Work;
@@ -28,6 +28,7 @@ const _loaders = {
28
28
  more: () => import('./More.svelte'),
29
29
  // — Usuarios y autenticación —
30
30
  user: () => import('./User.svelte'),
31
+ userShield: () => import('./UserShield.svelte'),
31
32
  userTie: () => import('./UserTie.svelte'),
32
33
  team: () => import('./Team.svelte'),
33
34
  group: () => import('./Group.svelte'),
@@ -101,6 +102,7 @@ const _loaders = {
101
102
  save: () => import('./Save.svelte'),
102
103
  form: () => import('./Form.svelte'),
103
104
  print: () => import('./Print.svelte'),
105
+ work: () => import('./Work.svelte'),
104
106
  // — Calendario y tiempo —
105
107
  calendar: () => import('./Calendar.svelte'),
106
108
  calendarPlus: () => import('./CalendarPlus.svelte'),
@@ -121,6 +123,14 @@ const _loaders = {
121
123
  uploadProgress: () => import('./UploadLoader.svelte'),
122
124
  fileUploadAnimated: () => import('./FileUploadAnimated.svelte'),
123
125
  refresh: () => import('./Update.svelte'),
126
+ syncPhoto: () => import('./SyncPhoto.svelte'),
127
+ process: () => import('./Process.svelte'),
128
+ play: () => import('./Play.svelte'),
129
+ pause: () => import('./Pause.svelte'),
130
+ historic: () => import('./Historic.svelte'),
131
+ hardDrive: () => import('./HardDrive.svelte'),
132
+ connect: () => import('./Connect.svelte'),
133
+ archive: () => import('./Archive.svelte'),
124
134
  // — Estados y feedback —
125
135
  check: () => import('./Check.svelte'),
126
136
  checkOutline: () => import('./CheckO.svelte'),
@@ -172,7 +182,7 @@ const _loaders = {
172
182
  editOutline: () => import('./EditOutline.svelte'),
173
183
  trash: () => import('./Trash.svelte'),
174
184
  trashOutline: () => import('./TrashOutline.svelte'),
175
- filter: () => import('./FilterOutline.svelte'),
185
+ filter: () => import('./Filter.svelte'),
176
186
  filterOutline: () => import('./FilterOutline.svelte'),
177
187
  tags: () => import('./Tags.svelte'),
178
188
  tools: () => import('./Tools.svelte'),
@@ -192,6 +202,7 @@ const _loaders = {
192
202
  earth: () => import('./Earth.svelte'),
193
203
  globe: () => import('./Globe.svelte'),
194
204
  lightHub: () => import('./LightHub.svelte'),
205
+ qr: () => import('./Qr.svelte'),
195
206
  sync: () => import('./Sync.svelte'),
196
207
  };
197
208
  // ============================================================================
@@ -1,10 +1,20 @@
1
1
  import type { Component } from "svelte";
2
2
  export declare const iconRegistry: {
3
- readonly home: Component<import("..").IconProps, {}, "">;
4
- readonly dashboard: Component<import("..").IconProps, {}, "">;
5
- readonly dashboardOutline: Component<import("..").IconProps, {}, "">;
6
- readonly settings: Component<import("..").IconProps, {}, "">;
7
- readonly search: Component<import("..").IconProps, {}, "">;
3
+ readonly home: Component<import("..").IconProps & {
4
+ mode?: import("..").IconMode;
5
+ }, {}, "">;
6
+ readonly dashboard: Component<import("..").IconProps & {
7
+ mode?: import("..").IconMode;
8
+ }, {}, "">;
9
+ readonly dashboardOutline: Component<import("..").IconProps & {
10
+ mode?: import("..").IconMode;
11
+ }, {}, "">;
12
+ readonly settings: Component<import("..").IconProps & {
13
+ mode?: import("..").IconMode;
14
+ }, {}, "">;
15
+ readonly search: Component<import("..").IconProps & {
16
+ mode?: import("..").IconMode;
17
+ }, {}, "">;
8
18
  readonly menu: Component<import("..").IconProps, {}, "">;
9
19
  readonly close: Component<import("..").IconProps, {}, "">;
10
20
  readonly plus: Component<import("..").IconProps, {}, "">;
@@ -13,6 +23,9 @@ export declare const iconRegistry: {
13
23
  readonly sidebar: Component<import("..").IconProps, {}, "">;
14
24
  readonly more: Component<import("..").IconProps, {}, "">;
15
25
  readonly user: Component<import("..").IconProps, {}, "">;
26
+ readonly userShield: Component<import("..").IconProps & {
27
+ mode?: import("..").IconMode;
28
+ }, {}, "">;
16
29
  readonly userTie: Component<import("..").IconProps, {}, "">;
17
30
  readonly team: Component<import("..").IconProps, {}, "">;
18
31
  readonly group: Component<import("..").IconProps, {}, "">;
@@ -22,8 +35,12 @@ export declare const iconRegistry: {
22
35
  readonly lockOpen: Component<import("..").IconProps, {}, "">;
23
36
  readonly key: Component<import("..").IconProps, {}, "">;
24
37
  readonly logout: Component<import("..").IconProps, {}, "">;
25
- readonly eye: Component<import("..").IconProps, {}, "">;
26
- readonly eyeOff: Component<import("..").IconProps, {}, "">;
38
+ readonly eye: Component<import("..").IconProps & {
39
+ mode?: import("..").IconMode;
40
+ }, {}, "">;
41
+ readonly eyeOff: Component<import("..").IconProps & {
42
+ mode?: import("..").IconMode;
43
+ }, {}, "">;
27
44
  readonly shield: Component<import("..").IconProps, {}, "">;
28
45
  readonly fingerprint: Component<import("..").IconProps, {}, "">;
29
46
  readonly contact: Component<import("..").IconProps, {}, "">;
@@ -31,7 +48,9 @@ export declare const iconRegistry: {
31
48
  readonly email: Component<import("..").IconProps, {}, "">;
32
49
  readonly emailAnimated: Component<import("..").IconProps, {}, "">;
33
50
  readonly phone: Component<import("..").IconProps, {}, "">;
34
- readonly bell: Component<import("..").IconProps, {}, "">;
51
+ readonly bell: Component<import("..").IconProps & {
52
+ mode?: import("..").IconMode;
53
+ }, {}, "">;
35
54
  readonly send: Component<import("..").IconProps, {}, "">;
36
55
  readonly share: Component<import("..").IconProps, {}, "">;
37
56
  readonly world: Component<import("..").IconProps, {}, "">;
@@ -46,11 +65,15 @@ export declare const iconRegistry: {
46
65
  readonly cost: Component<import("..").IconProps, {}, "">;
47
66
  readonly exchange: Component<import("..").IconProps, {}, "">;
48
67
  readonly swap: Component<import("..").IconProps, {}, "">;
49
- readonly bank: Component<import("..").IconProps, {}, "">;
68
+ readonly bank: Component<import("..").IconProps & {
69
+ mode?: import("..").IconMode;
70
+ }, {}, "">;
50
71
  readonly pay: Component<import("..").IconProps, {}, "">;
51
72
  readonly creditCard: Component<import("..").IconProps, {}, "">;
52
73
  readonly receipt: Component<import("..").IconProps, {}, "">;
53
- readonly buy: Component<import("..").IconProps, {}, "">;
74
+ readonly buy: Component<import("..").IconProps & {
75
+ mode?: import("..").IconMode;
76
+ }, {}, "">;
54
77
  readonly chart: Component<import("..").IconProps, {}, "">;
55
78
  readonly chartDocument: Component<import("..").IconProps, {}, "">;
56
79
  readonly chartSquare: Component<import("..").IconProps, {}, "">;
@@ -78,18 +101,29 @@ export declare const iconRegistry: {
78
101
  readonly imageAnimated: Component<import("..").IconProps, {}, "">;
79
102
  readonly folder: Component<import("..").IconProps, {}, "">;
80
103
  readonly folderShared: Component<import("..").IconProps, {}, "">;
81
- readonly attachment: Component<import("..").IconProps, {}, "">;
104
+ readonly attachment: Component<import("..").IconProps & {
105
+ mode?: import("..").IconMode;
106
+ }, {}, "">;
82
107
  readonly save: Component<import("..").IconProps, {}, "">;
83
108
  readonly form: Component<import("..").IconProps, {}, "">;
84
109
  readonly print: Component<import("..").IconProps, {}, "">;
85
- readonly calendar: Component<import("..").IconProps, {}, "">;
86
- readonly calendarPlus: Component<import("..").IconProps, {}, "">;
110
+ readonly work: Component<import("..").IconProps & {
111
+ mode?: import("..").IconMode;
112
+ }, {}, "">;
113
+ readonly calendar: Component<import("..").IconProps & {
114
+ mode?: import("..").IconMode;
115
+ }, {}, "">;
116
+ readonly calendarPlus: Component<import("..").IconProps & {
117
+ mode?: import("..").IconMode;
118
+ }, {}, "">;
87
119
  readonly calendarEdit: Component<import("..").IconProps, {}, "">;
88
120
  readonly timer: Component<import("..").IconProps, {}, "">;
89
121
  readonly arrowRight: Component<import("..").IconProps, {}, "">;
90
122
  readonly arrowUp: Component<import("..").IconProps, {}, "">;
91
123
  readonly arrowUpDown: Component<import("..").IconProps, {}, "">;
92
- readonly arrowLeftAnimated: Component<import("..").IconProps, {}, "">;
124
+ readonly arrowLeftAnimated: Component<import("..").IconProps & {
125
+ mode?: import("..").IconMode;
126
+ }, {}, "">;
93
127
  readonly chevronDown: Component<import("..").IconProps, {}, "">;
94
128
  readonly chevronUpDown: Component<import("..").IconProps, {}, "">;
95
129
  readonly download: Component<import("..").IconProps, {}, "">;
@@ -99,6 +133,30 @@ export declare const iconRegistry: {
99
133
  readonly uploadProgress: Component<import("..").IconProps, {}, "">;
100
134
  readonly fileUploadAnimated: Component<import("..").IconProps, {}, "">;
101
135
  readonly refresh: Component<import("..").IconProps, {}, "">;
136
+ readonly syncPhoto: Component<import("..").IconProps & {
137
+ mode?: import("..").IconMode;
138
+ }, {}, "">;
139
+ readonly process: Component<import("..").IconProps & {
140
+ mode?: import("..").IconMode;
141
+ }, {}, "">;
142
+ readonly play: Component<import("..").IconProps & {
143
+ mode?: import("..").IconMode;
144
+ }, {}, "">;
145
+ readonly pause: Component<import("..").IconProps & {
146
+ mode?: import("..").IconMode;
147
+ }, {}, "">;
148
+ readonly historic: Component<import("..").IconProps & {
149
+ mode?: import("..").IconMode;
150
+ }, {}, "">;
151
+ readonly hardDrive: Component<import("..").IconProps & {
152
+ mode?: import("..").IconMode;
153
+ }, {}, "">;
154
+ readonly connect: Component<import("..").IconProps & {
155
+ mode?: import("..").IconMode;
156
+ }, {}, "">;
157
+ readonly archive: Component<import("..").IconProps & {
158
+ mode?: import("..").IconMode;
159
+ }, {}, "">;
102
160
  readonly check: Component<import("..").IconProps, {}, "">;
103
161
  readonly checkOutline: Component<import("..").IconProps, {}, "">;
104
162
  readonly checkList: Component<import("..").IconProps, {}, "">;
@@ -117,7 +175,9 @@ export declare const iconRegistry: {
117
175
  readonly heart: Component<import("..").IconProps, {}, "">;
118
176
  readonly reset: Component<import("..").IconProps, {}, "">;
119
177
  readonly height: Component<import("..").IconProps, {}, "">;
120
- readonly alternate: Component<import("..").IconProps, {}, "">;
178
+ readonly alternate: Component<import("..").IconProps & {
179
+ mode?: import("..").IconMode;
180
+ }, {}, "">;
121
181
  readonly moon: Component<import("..").IconProps, {}, "">;
122
182
  readonly sun: Component<import("..").IconProps, {}, "">;
123
183
  readonly colors: Component<import("..").IconProps, {}, "">;
@@ -132,9 +192,13 @@ export declare const iconRegistry: {
132
192
  readonly category: Component<import("..").IconProps, {}, "">;
133
193
  readonly categoryAdd: Component<import("..").IconProps, {}, "">;
134
194
  readonly categorySearch: Component<import("..").IconProps, {}, "">;
135
- readonly boxAdd: Component<import("..").IconProps, {}, "">;
195
+ readonly boxAdd: Component<import("..").IconProps & {
196
+ mode?: import("..").IconMode;
197
+ }, {}, "">;
136
198
  readonly measure: Component<import("..").IconProps, {}, "">;
137
- readonly box: Component<import("..").IconProps, {}, "">;
199
+ readonly box: Component<import("..").IconProps & {
200
+ mode?: import("..").IconMode;
201
+ }, {}, "">;
138
202
  readonly scan: Component<import("..").IconProps, {}, "">;
139
203
  readonly cart: Component<import("..").IconProps, {}, "">;
140
204
  readonly cards: Component<import("..").IconProps, {}, "">;
@@ -149,7 +213,9 @@ export declare const iconRegistry: {
149
213
  readonly trash: Component<import("..").IconProps, {}, "">;
150
214
  readonly trashOutline: Component<import("..").IconProps, {}, "">;
151
215
  readonly filter: Component<import("..").IconProps, {}, "">;
152
- readonly filterOutline: Component<import("..").IconProps, {}, "">;
216
+ readonly filterOutline: Component<import("..").IconProps & {
217
+ mode?: import("..").IconMode;
218
+ }, {}, "">;
153
219
  readonly tags: Component<import("..").IconProps, {}, "">;
154
220
  readonly tools: Component<import("..").IconProps, {}, "">;
155
221
  readonly objectGroup: Component<import("..").IconProps, {}, "">;
@@ -165,6 +231,9 @@ export declare const iconRegistry: {
165
231
  readonly earth: Component<import("..").IconProps, {}, "">;
166
232
  readonly globe: Component<import("..").IconProps, {}, "">;
167
233
  readonly lightHub: Component<import("..").IconProps, {}, "">;
234
+ readonly qr: Component<import("..").IconProps & {
235
+ mode?: import("..").IconMode;
236
+ }, {}, "">;
168
237
  readonly sync: Component<import("..").IconProps, {}, "">;
169
238
  };
170
239
  export type IconName = keyof typeof iconRegistry;