@genarou/blazir-icons 1.3.2 → 1.3.3
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/LICENSE +67 -42
- package/dist/icons/Ai.svelte +34 -6
- package/dist/icons/Alternate.svelte +15 -8
- package/dist/icons/Alternate.svelte.d.ts +5 -2
- package/dist/icons/AnimatedArrowLeft.svelte +29 -11
- package/dist/icons/AnimatedArrowLeft.svelte.d.ts +5 -2
- package/dist/icons/Archive.svelte +21 -0
- package/dist/icons/Archive.svelte.d.ts +7 -0
- package/dist/icons/Attachment.svelte +10 -10
- package/dist/icons/Attachment.svelte.d.ts +5 -2
- package/dist/icons/Bank.svelte +16 -8
- package/dist/icons/Bank.svelte.d.ts +5 -2
- package/dist/icons/Bell.svelte +11 -8
- package/dist/icons/Bell.svelte.d.ts +5 -2
- package/dist/icons/Box.svelte +12 -10
- package/dist/icons/Box.svelte.d.ts +5 -2
- package/dist/icons/BoxAdd.svelte +11 -8
- package/dist/icons/BoxAdd.svelte.d.ts +5 -2
- package/dist/icons/Buy.svelte +11 -10
- package/dist/icons/Buy.svelte.d.ts +5 -2
- package/dist/icons/Calendar.svelte +12 -9
- package/dist/icons/Calendar.svelte.d.ts +5 -2
- package/dist/icons/CalendarEdit.svelte +5 -5
- package/dist/icons/CalendarPlus.svelte +11 -9
- package/dist/icons/CalendarPlus.svelte.d.ts +5 -2
- package/dist/icons/Cart.svelte +13 -10
- package/dist/icons/Connect.svelte +21 -0
- package/dist/icons/Connect.svelte.d.ts +7 -0
- package/dist/icons/Dashboard.svelte +10 -7
- package/dist/icons/Dashboard.svelte.d.ts +5 -2
- package/dist/icons/DashboardOutlined.svelte +14 -12
- package/dist/icons/DashboardOutlined.svelte.d.ts +5 -2
- package/dist/icons/Eye.svelte +42 -29
- package/dist/icons/Eye.svelte.d.ts +5 -2
- package/dist/icons/EyeOff.svelte +51 -51
- package/dist/icons/EyeOff.svelte.d.ts +5 -2
- package/dist/icons/Filter.svelte +10 -7
- package/dist/icons/Filter.svelte.d.ts +5 -2
- package/dist/icons/FilterOutline.svelte +8 -7
- package/dist/icons/FilterOutline.svelte.d.ts +5 -2
- package/dist/icons/HardDrive.svelte +21 -0
- package/dist/icons/HardDrive.svelte.d.ts +7 -0
- package/dist/icons/Historic.svelte +21 -0
- package/dist/icons/Historic.svelte.d.ts +7 -0
- package/dist/icons/Home.svelte +11 -7
- package/dist/icons/Home.svelte.d.ts +5 -2
- package/dist/icons/MagnifiyingGlass.svelte +12 -8
- package/dist/icons/MagnifiyingGlass.svelte.d.ts +5 -2
- package/dist/icons/Pause.svelte +21 -0
- package/dist/icons/Pause.svelte.d.ts +7 -0
- package/dist/icons/Play.svelte +21 -0
- package/dist/icons/Play.svelte.d.ts +7 -0
- package/dist/icons/Process.svelte +21 -0
- package/dist/icons/Process.svelte.d.ts +7 -0
- package/dist/icons/Settings.svelte +16 -8
- package/dist/icons/Settings.svelte.d.ts +5 -2
- package/dist/icons/SyncPhoto.svelte +21 -0
- package/dist/icons/SyncPhoto.svelte.d.ts +7 -0
- package/dist/icons/Work.svelte +21 -0
- package/dist/icons/Work.svelte.d.ts +7 -0
- package/dist/icons/registry.d.ts +84 -19
- package/dist/icons/registry.js +18 -0
- package/dist/icons-api.d.ts +9 -0
- package/dist/icons-api.js +9 -0
- package/package.json +13 -12
|
@@ -1,18 +1,21 @@
|
|
|
1
|
-
<!-- src/lib/icons/Calendar.svelte -->
|
|
2
1
|
<script lang="ts">
|
|
3
2
|
import IconBase from "../IconBase.svelte";
|
|
4
|
-
import type { IconProps } from "../types";
|
|
5
|
-
|
|
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
|
-
viewBox="0 0
|
|
12
|
-
ariaLabel={props.ariaLabel ?? "
|
|
13
|
-
title={props.title ?? ""}
|
|
11
|
+
viewBox="0 0 24 24"
|
|
12
|
+
ariaLabel={props.ariaLabel ?? "Calendario"}
|
|
13
|
+
title={props.title ?? "Calendar Premium"}
|
|
14
14
|
>
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
{#snippet children()}
|
|
16
|
+
<path
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
d="M17 3V2h-2v1H9V2H7v1H4a2 2 0 0 0-2 2v15a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2h-3zm3 17H4V9h16v11zm-12-8h2v2H8v-2zm4 0h2v2h-2v-2zm4 0h2v2h-2v-2zm-8 4h2v2H8v-2zm4 0h2v2h-2v-2z"
|
|
19
|
+
/>
|
|
20
|
+
{/snippet}
|
|
18
21
|
</IconBase>
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import type { IconProps } from "../types";
|
|
2
|
-
|
|
1
|
+
import type { IconMode, IconProps } from "../types.js";
|
|
2
|
+
type $$ComponentProps = IconProps & {
|
|
3
|
+
mode?: IconMode;
|
|
4
|
+
};
|
|
5
|
+
declare const Calendar: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
3
6
|
type Calendar = ReturnType<typeof Calendar>;
|
|
4
7
|
export default Calendar;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
<!-- src/lib/icons/CalendarEdit.svelte -->
|
|
2
1
|
<script lang="ts">
|
|
3
2
|
import IconBase from "../IconBase.svelte";
|
|
4
3
|
import type { IconProps } from "../types";
|
|
5
|
-
|
|
4
|
+
|
|
5
|
+
let { ariaLabel, title, ...rest }: IconProps = $props();
|
|
6
6
|
</script>
|
|
7
7
|
|
|
8
8
|
<IconBase
|
|
9
|
-
{...
|
|
9
|
+
{...rest}
|
|
10
10
|
mode="solid"
|
|
11
11
|
viewBox="0 0 24 24"
|
|
12
|
-
ariaLabel={
|
|
13
|
-
title={
|
|
12
|
+
ariaLabel={ariaLabel ?? "CalendarEdit"}
|
|
13
|
+
title={title ?? ""}
|
|
14
14
|
>
|
|
15
15
|
<path
|
|
16
16
|
d="M19 4h-3V2h-2v2h-4V2H8v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2M5 20V7h14V6l.002 14z"
|
|
@@ -1,19 +1,21 @@
|
|
|
1
|
-
<!-- src/lib/icons/CalendarAdd.svelte -->
|
|
2
1
|
<script lang="ts">
|
|
3
2
|
import IconBase from "../IconBase.svelte";
|
|
4
|
-
import type { IconProps } from "../types";
|
|
5
|
-
|
|
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 24 24"
|
|
12
|
-
ariaLabel={props.ariaLabel ?? "
|
|
13
|
-
title={props.title ?? ""}
|
|
12
|
+
ariaLabel={props.ariaLabel ?? "Programar fecha"}
|
|
13
|
+
title={props.title ?? "Calendar Add Premium"}
|
|
14
14
|
>
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
15
|
+
{#snippet children()}
|
|
16
|
+
<path
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
d="M17 3V2h-2v1H9V2H7v1H4a2 2 0 0 0-2 2v15a2 2 0 0 0 2 2h9v-2H4V9h16v4h2V5a2 2 0 0 0-2-2h-3zm2 10v3h-3v2h3v3h2v-3h3v-2h-3v-3h-2z"
|
|
19
|
+
/>
|
|
20
|
+
{/snippet}
|
|
19
21
|
</IconBase>
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import type { IconProps } from "../types";
|
|
2
|
-
|
|
1
|
+
import type { IconMode, IconProps } from "../types.js";
|
|
2
|
+
type $$ComponentProps = IconProps & {
|
|
3
|
+
mode?: IconMode;
|
|
4
|
+
};
|
|
5
|
+
declare const CalendarPlus: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
3
6
|
type CalendarPlus = ReturnType<typeof CalendarPlus>;
|
|
4
7
|
export default CalendarPlus;
|
package/dist/icons/Cart.svelte
CHANGED
|
@@ -1,28 +1,31 @@
|
|
|
1
|
-
<!-- src/lib/icons/Cart.svelte -->
|
|
2
1
|
<script lang="ts">
|
|
3
2
|
import IconBase from "../IconBase.svelte";
|
|
4
3
|
import type { IconProps } from "../types";
|
|
5
4
|
|
|
6
5
|
const props: IconProps = $props();
|
|
7
|
-
const ariaLabel = props.ariaLabel ?? "Cart";
|
|
6
|
+
const ariaLabel = props.ariaLabel ?? "Cart Outline";
|
|
8
7
|
const title = props.title ?? "";
|
|
9
8
|
</script>
|
|
10
9
|
|
|
11
10
|
<IconBase
|
|
12
11
|
{...props}
|
|
13
|
-
mode={props.mode ?? "
|
|
12
|
+
mode={props.mode ?? "outline"}
|
|
14
13
|
viewBox="0 0 24 24"
|
|
15
14
|
{ariaLabel}
|
|
16
15
|
{title}
|
|
17
16
|
>
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
<g
|
|
18
|
+
fill="none"
|
|
19
|
+
stroke="currentColor"
|
|
20
|
+
stroke-width="2"
|
|
21
|
+
stroke-linecap="round"
|
|
22
|
+
stroke-linejoin="round"
|
|
23
|
+
>
|
|
20
24
|
<path
|
|
21
|
-
d="
|
|
22
|
-
/>
|
|
23
|
-
<path
|
|
24
|
-
fill="currentColor"
|
|
25
|
-
d="M9 20a1 1 0 1 1 0 2a1 1 0 0 1 0-2m7 0a1 1 0 1 1 0 2a1 1 0 0 1 0-2M2.2 2.9a1 1 0 0 1 1.295-.269l.105.07l1.708 1.28a2 2 0 0 1 .653.848l.06.171h12.846a2 2 0 0 1 1.998 2.1l-.013.148l-.457 3.655a5 5 0 0 1-4.32 4.34l-.226.023l-7.313.61l.26 1.124H17.5a1 1 0 0 1 .117 1.993L17.5 19H8.796a2 2 0 0 1-1.906-1.393l-.043-.157l-2.74-11.87L2.4 4.3a1 1 0 0 1-.2-1.4"
|
|
25
|
+
d="M3.977 5.285L6.15 14.54a2 2 0 0 0 1.94 1.545h9.46a2 2 0 0 0 1.973-1.67l1.08-6.375a1 1 0 0 0-1-1.168H5.216"
|
|
26
26
|
/>
|
|
27
|
+
<path d="M1.5 2.5h2l.477 2.785" />
|
|
28
|
+
<circle cx="9" cy="20" r="1" fill="currentColor" />
|
|
29
|
+
<circle cx="17" cy="20" r="1" fill="currentColor" />
|
|
27
30
|
</g>
|
|
28
31
|
</IconBase>
|
|
@@ -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 ?? "Sincronización o conexión"}
|
|
13
|
+
title={props.title ?? "Sync / Merge"}
|
|
14
|
+
>
|
|
15
|
+
{#snippet children()}
|
|
16
|
+
<path
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
d="M3 16v-3H2q-.425 0-.712-.288T1 12t.288-.712T2 11h1V8q0-1.25.875-2.125T6 5h1q0-.425.288-.712T8 4t.713.288T9 5v14q0 .425-.288.713T8 20t-.712-.288T7 19H6q-1.25 0-2.125-.875T3 16m18 0q0 1.25-.875 2.125T18 19h-1q0 .425-.288.713T16 20t-.712-.288T15 19v-3h-3q-.425 0-.712-.288T11 15t.288-.712T12 14h3v-4h-3q-.425 0-.712-.288T11 9t.288-.712T12 8h3V5q0-.425.288-.712T16 4t.713.288T17 5h1q1.25 0 2.125.875T21 8v3h1q.425 0 .713.288T23 12t-.288.713T22 13h-1z"
|
|
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 Connect: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
6
|
+
type Connect = ReturnType<typeof Connect>;
|
|
7
|
+
export default Connect;
|
|
@@ -1,18 +1,21 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
2
|
import IconBase from "../IconBase.svelte";
|
|
3
|
-
import type { IconProps } from "../types";
|
|
3
|
+
import type { IconMode, IconProps } from "../types.js";
|
|
4
4
|
|
|
5
|
-
const props: IconProps = $props();
|
|
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 24 24"
|
|
12
|
-
ariaLabel={props.ariaLabel ?? "
|
|
13
|
-
title={props.title ?? ""}
|
|
12
|
+
ariaLabel={props.ariaLabel ?? "Vista de cuadrícula"}
|
|
13
|
+
title={props.title ?? "Grid View"}
|
|
14
14
|
>
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
{#snippet children()}
|
|
16
|
+
<path
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
d="M4.5 3h5c.8 0 1.5.7 1.5 1.5v7c0 .8-.7 1.5-1.5 1.5h-5c-.8 0-1.5-.7-1.5-1.5v-7C3 3.7 3.7 3 4.5 3zm0 11h5c.8 0 1.5.7 1.5 1.5v4c0 .8-.7 1.5-1.5 1.5h-5c-.8 0-1.5-.7-1.5-1.5v-4c0-.8.7-1.5 1.5-1.5zm9.5-11h5c.8 0 1.5.7 1.5 1.5v4c0 .8-.7 1.5-1.5 1.5h-5c-.8 0-1.5-.7-1.5-1.5v-4c0-.8.7-1.5 1.5-1.5zm0 8h5c.8 0 1.5.7 1.5 1.5v7c0 .8-.7 1.5-1.5 1.5h-5c-.8 0-1.5-.7-1.5-1.5v-7c0-.8.7-1.5 1.5-1.5z"
|
|
19
|
+
/>
|
|
20
|
+
{/snippet}
|
|
18
21
|
</IconBase>
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import type { IconProps } from "../types";
|
|
2
|
-
|
|
1
|
+
import type { IconMode, IconProps } from "../types.js";
|
|
2
|
+
type $$ComponentProps = IconProps & {
|
|
3
|
+
mode?: IconMode;
|
|
4
|
+
};
|
|
5
|
+
declare const Dashboard: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
3
6
|
type Dashboard = ReturnType<typeof Dashboard>;
|
|
4
7
|
export default Dashboard;
|
|
@@ -1,23 +1,25 @@
|
|
|
1
|
-
<!-- src/lib/icons/DashboardOutlined.svelte -->
|
|
2
1
|
<script lang="ts">
|
|
3
2
|
import IconBase from "../IconBase.svelte";
|
|
4
|
-
import type { IconProps } from "../types";
|
|
5
|
-
|
|
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="outline"
|
|
11
11
|
viewBox="0 0 24 24"
|
|
12
|
-
ariaLabel={props.ariaLabel ?? "
|
|
13
|
-
title={props.title ?? ""}
|
|
12
|
+
ariaLabel={props.ariaLabel ?? "Gráfico de tabla"}
|
|
13
|
+
title={props.title ?? "Table Chart"}
|
|
14
14
|
strokeWidth={props.strokeWidth ?? 1.5}
|
|
15
|
-
strokeLinecap={props.strokeLinecap ?? "round"}
|
|
16
|
-
strokeLinejoin={props.strokeLinejoin ?? "round"}
|
|
17
15
|
>
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
16
|
+
{#snippet children()}
|
|
17
|
+
<path
|
|
18
|
+
d="M4 13h6c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1m0 8h6c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1m10 0h6c.55 0 1-.45 1-1v-8c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1M13 4v4c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1"
|
|
19
|
+
fill="none"
|
|
20
|
+
stroke="currentColor"
|
|
21
|
+
stroke-linecap="round"
|
|
22
|
+
stroke-linejoin="round"
|
|
23
|
+
/>
|
|
24
|
+
{/snippet}
|
|
23
25
|
</IconBase>
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import type { IconProps } from "../types";
|
|
2
|
-
|
|
1
|
+
import type { IconMode, IconProps } from "../types.js";
|
|
2
|
+
type $$ComponentProps = IconProps & {
|
|
3
|
+
mode?: IconMode;
|
|
4
|
+
};
|
|
5
|
+
declare const DashboardOutlined: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
3
6
|
type DashboardOutlined = ReturnType<typeof DashboardOutlined>;
|
|
4
7
|
export default DashboardOutlined;
|
package/dist/icons/Eye.svelte
CHANGED
|
@@ -1,40 +1,53 @@
|
|
|
1
|
-
<!-- src/lib/icons/EyeRevealAnimated.svelte -->
|
|
2
1
|
<script lang="ts">
|
|
3
2
|
import IconBase from "../IconBase.svelte";
|
|
4
|
-
import type { IconProps } from "../types";
|
|
5
|
-
|
|
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="outline"
|
|
11
11
|
viewBox="0 0 24 24"
|
|
12
|
-
ariaLabel={props.ariaLabel ?? "
|
|
13
|
-
title={props.title ?? ""}
|
|
12
|
+
ariaLabel={props.ariaLabel ?? "Revelar contraseña"}
|
|
13
|
+
title={props.title ?? "Eye Reveal"}
|
|
14
|
+
strokeWidth={props.strokeWidth ?? 2}
|
|
14
15
|
>
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
{#snippet children()}
|
|
17
|
+
<circle cx="12" cy="12" r="0" fill="currentColor">
|
|
18
|
+
<animate
|
|
19
|
+
fill="freeze"
|
|
20
|
+
attributeName="r"
|
|
21
|
+
dur="0.25s"
|
|
22
|
+
values="0;3"
|
|
23
|
+
calcMode="spline"
|
|
24
|
+
keySplines="0.4 0 0.2 1"
|
|
25
|
+
/>
|
|
26
|
+
</circle>
|
|
19
27
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
28
|
+
<path
|
|
29
|
+
fill="currentColor"
|
|
30
|
+
fill-opacity="0"
|
|
31
|
+
stroke="currentColor"
|
|
32
|
+
stroke-linecap="round"
|
|
33
|
+
stroke-linejoin="round"
|
|
34
|
+
d="M3 12c2-1 5-2 9-2s7 1 9 2c-2 1-5 2-9 2s-7-1-9-2Z"
|
|
35
|
+
>
|
|
36
|
+
<animate
|
|
37
|
+
fill="freeze"
|
|
38
|
+
attributeName="d"
|
|
39
|
+
dur="0.4s"
|
|
40
|
+
values="M3 12c2-1 5-2 9-2s7 1 9 2c-2 1-5 2-9 2s-7-1-9-2Z;M2 12c2-4 6-7 10-7s8 3 10 7c-2 4-6 7-10 7s-8-3-10-7Z"
|
|
41
|
+
calcMode="spline"
|
|
42
|
+
keySplines="0.4 0 0.2 1"
|
|
43
|
+
/>
|
|
44
|
+
<animate
|
|
45
|
+
fill="freeze"
|
|
46
|
+
attributeName="fill-opacity"
|
|
47
|
+
begin="0.4s"
|
|
48
|
+
dur="0.2s"
|
|
49
|
+
values="0;0.15"
|
|
50
|
+
/>
|
|
51
|
+
</path>
|
|
52
|
+
{/snippet}
|
|
40
53
|
</IconBase>
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import type { IconProps } from "../types";
|
|
2
|
-
|
|
1
|
+
import type { IconMode, IconProps } from "../types.js";
|
|
2
|
+
type $$ComponentProps = IconProps & {
|
|
3
|
+
mode?: IconMode;
|
|
4
|
+
};
|
|
5
|
+
declare const Eye: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
3
6
|
type Eye = ReturnType<typeof Eye>;
|
|
4
7
|
export default Eye;
|
package/dist/icons/EyeOff.svelte
CHANGED
|
@@ -1,63 +1,63 @@
|
|
|
1
|
-
<!-- src/lib/icons/EyeRevealOffAnimated.svelte -->
|
|
2
1
|
<script lang="ts">
|
|
3
2
|
import IconBase from "../IconBase.svelte";
|
|
4
|
-
import type { IconProps } from "../types";
|
|
5
|
-
|
|
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="outline"
|
|
11
11
|
viewBox="0 0 24 24"
|
|
12
|
-
ariaLabel={props.ariaLabel ?? "
|
|
13
|
-
title={props.title ?? ""}
|
|
12
|
+
ariaLabel={props.ariaLabel ?? "Ocultar contraseña"}
|
|
13
|
+
title={props.title ?? "Eye Reveal Off"}
|
|
14
|
+
strokeWidth={props.strokeWidth ?? 2}
|
|
15
|
+
strokeLinecap="round"
|
|
16
|
+
strokeLinejoin="round"
|
|
14
17
|
>
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
<animate
|
|
27
|
-
fill="freeze"
|
|
28
|
-
attributeName="d"
|
|
29
|
-
dur="0.5s"
|
|
30
|
-
values="M4 12c1.38 -0.77 4.42 -1.3 8 -1.3c3.58 0 6.62 0.53 8 1.3c-1.38 0.77 -4.42 1.3 -8 1.3c-3.58 0 -6.62 -0.53 -8 -1.3Z;M2 12c1.72 -3.83 5.53 -6.5 10 -6.5c4.47 0 8.28 2.67 10 6.5c-1.72 3.83 -5.53 6.5 -10 6.5c-4.47 0 -8.28 -2.67 -10 -6.5Z"
|
|
31
|
-
/>
|
|
32
|
-
<animate
|
|
33
|
-
fill="freeze"
|
|
34
|
-
attributeName="fill-opacity"
|
|
35
|
-
begin="0.5s"
|
|
36
|
-
dur="0.15s"
|
|
37
|
-
values="0;0.3"
|
|
38
|
-
/>
|
|
39
|
-
</path>
|
|
18
|
+
{#snippet children()}
|
|
19
|
+
<circle cx="12" cy="12" r="0" fill="currentColor">
|
|
20
|
+
<animate
|
|
21
|
+
fill="freeze"
|
|
22
|
+
attributeName="r"
|
|
23
|
+
dur="0.25s"
|
|
24
|
+
values="0;3"
|
|
25
|
+
calcMode="spline"
|
|
26
|
+
keySplines="0.4 0 0.2 1"
|
|
27
|
+
/>
|
|
28
|
+
</circle>
|
|
40
29
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
30
|
+
<path
|
|
31
|
+
fill="currentColor"
|
|
32
|
+
fill-opacity="0"
|
|
33
|
+
stroke="currentColor"
|
|
34
|
+
d="M2 12c2-4 6-7 10-7s8 3 10 7c-2 4-6 7-10 7s-8-3-10-7Z"
|
|
35
|
+
>
|
|
36
|
+
<animate
|
|
37
|
+
fill="freeze"
|
|
38
|
+
attributeName="fill-opacity"
|
|
39
|
+
begin="0.4s"
|
|
40
|
+
dur="0.2s"
|
|
41
|
+
values="0;0.12"
|
|
42
|
+
/>
|
|
43
|
+
</path>
|
|
46
44
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
45
|
+
<path
|
|
46
|
+
fill="none"
|
|
47
|
+
stroke="currentColor"
|
|
48
|
+
d="M21 3L3 21"
|
|
49
|
+
stroke-dasharray="26"
|
|
50
|
+
stroke-dashoffset="26"
|
|
51
|
+
>
|
|
52
|
+
<animate
|
|
53
|
+
fill="freeze"
|
|
54
|
+
attributeName="stroke-dashoffset"
|
|
55
|
+
begin="0.5s"
|
|
56
|
+
dur="0.3s"
|
|
57
|
+
values="26;0"
|
|
58
|
+
calcMode="spline"
|
|
59
|
+
keySplines="0.4 0 0.2 1"
|
|
60
|
+
/>
|
|
61
|
+
</path>
|
|
62
|
+
{/snippet}
|
|
63
63
|
</IconBase>
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import type { IconProps } from "../types";
|
|
2
|
-
|
|
1
|
+
import type { IconMode, IconProps } from "../types.js";
|
|
2
|
+
type $$ComponentProps = IconProps & {
|
|
3
|
+
mode?: IconMode;
|
|
4
|
+
};
|
|
5
|
+
declare const EyeOff: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
3
6
|
type EyeOff = ReturnType<typeof EyeOff>;
|
|
4
7
|
export default EyeOff;
|
package/dist/icons/Filter.svelte
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
2
|
import IconBase from "../IconBase.svelte";
|
|
3
|
-
import type { IconProps } from "../types";
|
|
3
|
+
import type { IconMode, IconProps } from "../types.js";
|
|
4
4
|
|
|
5
|
-
const props: IconProps = $props();
|
|
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 24 24"
|
|
12
|
-
ariaLabel={props.ariaLabel ?? "
|
|
13
|
-
title={props.title ?? ""}
|
|
12
|
+
ariaLabel={props.ariaLabel ?? "Filtrar"}
|
|
13
|
+
title={props.title ?? "Filter"}
|
|
14
14
|
>
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
{#snippet children()}
|
|
16
|
+
<path
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
d="M3 5.5c0-.83.67-1.5 1.5-1.5h15c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-15C3.67 7 3 6.33 3 5.5zm4 6.5c0-.83.67-1.5 1.5-1.5h7c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-7c-.83 0-1.5-.67-1.5-1.5zm3 6.5c0-.83.67-1.5 1.5-1.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3c-.83 0-1.5-.67-1.5-1.5z"
|
|
19
|
+
/>
|
|
20
|
+
{/snippet}
|
|
18
21
|
</IconBase>
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import type { IconProps } from "../types";
|
|
2
|
-
|
|
1
|
+
import type { IconMode, IconProps } from "../types.js";
|
|
2
|
+
type $$ComponentProps = IconProps & {
|
|
3
|
+
mode?: IconMode;
|
|
4
|
+
};
|
|
5
|
+
declare const Filter: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
3
6
|
type Filter = ReturnType<typeof Filter>;
|
|
4
7
|
export default Filter;
|
|
@@ -1,20 +1,21 @@
|
|
|
1
|
-
<!-- src/lib/icons/FilterOutline.svelte -->
|
|
2
1
|
<script lang="ts">
|
|
3
2
|
import IconBase from "../IconBase.svelte";
|
|
4
|
-
import type { IconProps } from "../types";
|
|
5
|
-
|
|
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="outline"
|
|
11
11
|
viewBox="0 0 24 24"
|
|
12
|
-
ariaLabel={props.ariaLabel ?? "
|
|
13
|
-
title={props.title ?? ""}
|
|
12
|
+
ariaLabel={props.ariaLabel ?? "Filtrar"}
|
|
13
|
+
title={props.title ?? "Filter"}
|
|
14
14
|
strokeLinecap="round"
|
|
15
15
|
strokeLinejoin="round"
|
|
16
16
|
strokeWidth={props.strokeWidth ?? 2}
|
|
17
17
|
>
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
{#snippet children()}
|
|
19
|
+
<path d="M4 7h16M6 12h12M8 17h8" fill="none" stroke="currentColor" />
|
|
20
|
+
{/snippet}
|
|
20
21
|
</IconBase>
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import type { IconProps } from "../types";
|
|
2
|
-
|
|
1
|
+
import type { IconMode, IconProps } from "../types.js";
|
|
2
|
+
type $$ComponentProps = IconProps & {
|
|
3
|
+
mode?: IconMode;
|
|
4
|
+
};
|
|
5
|
+
declare const FilterOutline: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
3
6
|
type FilterOutline = ReturnType<typeof FilterOutline>;
|
|
4
7
|
export default FilterOutline;
|
|
@@ -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 o escaneo"}
|
|
13
|
+
title={props.title ?? "Camera / Scan"}
|
|
14
|
+
>
|
|
15
|
+
{#snippet children()}
|
|
16
|
+
<path
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
d="M9.175 8.175Q8 9.35 8 11t1.175 2.825T12 15t2.825-1.175T16 11t-1.175-2.825T12 7T9.175 8.175M12 13q-.825 0-1.412-.587T10 11t.588-1.412T12 9t1.413.588T14 11t-.587 1.413T12 13m4.713 3.713Q17 16.425 17 16t-.288-.712T16 15t-.712.288T15 16t.288.713T16 17t.713-.288M4 20V7q0-2.075 1.463-3.537T9 2h6q2.075 0 3.538 1.463T20 7v13q0 .825-.587 1.413T18 22H6q-.825 0-1.412-.587T4 20m3 0h10q.425 0 .713-.288T18 19t-.288-.712T17 18H7q-.425 0-.712.288T6 19t.288.713T7 20"
|
|
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 HardDrive: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
6
|
+
type HardDrive = ReturnType<typeof HardDrive>;
|
|
7
|
+
export default HardDrive;
|
|
@@ -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 ?? "Historial o recargar"}
|
|
13
|
+
title={props.title ?? "History / Refresh"}
|
|
14
|
+
>
|
|
15
|
+
{#snippet children()}
|
|
16
|
+
<path
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
d="M12 22q-3.55 0-6.262-2.175t-3.488-5.55q-.1-.425.15-.763t.675-.387t.75.2t.45.675q.675 2.625 2.813 4.313T12 20q3.35 0 5.675-2.325T20 12t-2.325-5.675T12 4Q9.85 4 8.012 5.062T5.1 8H7q.425 0 .713.288T8 9t-.288.713T7 10H3.6q-.55 0-.875-.437t-.15-.938q1.05-2.95 3.625-4.788T12 2q2.075 0 3.9.788t3.175 2.137T21.213 8.1T22 12t-.788 3.9t-2.137 3.175t-3.175 2.138T12 22m1-10.4l2.5 2.5q.275.275.275.7t-.275.7t-.7.275t-.7-.275l-2.8-2.8q-.15-.15-.225-.337T11 11.975V8q0-.425.288-.712T12 7t.713.288T13 8z"
|
|
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 Historic: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
6
|
+
type Historic = ReturnType<typeof Historic>;
|
|
7
|
+
export default Historic;
|