@genarou/blazir-icons 1.1.13 → 1.1.17

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.
@@ -124,8 +124,6 @@
124
124
  } else {
125
125
  v.stroke = props.color;
126
126
  }
127
-
128
- console.log("Final visual color:", v); // ← Debug temporal
129
127
  return v;
130
128
  });
131
129
  </script>
@@ -0,0 +1,16 @@
1
+ <!-- src/lib/icons/TextHeading.svelte -->
2
+ <script lang="ts">
3
+ import IconBase from "../IconBase.svelte";
4
+ import type { IconProps } from "../types";
5
+
6
+ const props: IconProps = $props();
7
+ const ariaLabel = $derived(props.ariaLabel ?? "Text Heading");
8
+ const title = $derived(props.title ?? "");
9
+ </script>
10
+
11
+ <IconBase {...props} mode="solid" {ariaLabel} {title} viewBox="0 0 24 24">
12
+ <!-- Path sin fill fijo, que herede currentColor -->
13
+ <path
14
+ d="M9 5.5c0 .83.67 1.5 1.5 1.5H14v10.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V7h3.5c.83 0 1.5-.67 1.5-1.5S21.33 4 20.5 4h-10C9.67 4 9 4.67 9 5.5M4.5 12H6v5.5c0 .83.67 1.5 1.5 1.5S9 18.33 9 17.5V12h1.5c.83 0 1.5-.67 1.5-1.5S11.33 9 10.5 9h-6C3.67 9 3 9.67 3 10.5S3.67 12 4.5 12"
15
+ />
16
+ </IconBase>
@@ -0,0 +1,4 @@
1
+ import type { IconProps } from "../types";
2
+ declare const Alternate: import("svelte").Component<IconProps, {}, "">;
3
+ type Alternate = ReturnType<typeof Alternate>;
4
+ export default Alternate;
@@ -0,0 +1,16 @@
1
+ <!-- src/lib/icons/ListChecks.svelte -->
2
+ <script lang="ts">
3
+ import IconBase from "../IconBase.svelte";
4
+ import type { IconProps } from "../types";
5
+
6
+ const props: IconProps = $props();
7
+ const ariaLabel = $derived(props.ariaLabel ?? "List checks");
8
+ const title = $derived(props.title ?? "");
9
+ </script>
10
+
11
+ <IconBase {...props} mode="solid" {ariaLabel} {title} viewBox="0 0 24 24">
12
+ <!-- No pongas fill="currentColor" aquí: que herede del <svg> -->
13
+ <path
14
+ d="m5.525 16.175l3.55-3.55q.3-.3.7-.288t.7.313q.275.3.275.7t-.275.7L6.25 18.3q-.3.3-.7.3t-.7-.3L2.7 16.15q-.275-.275-.275-.7t.275-.7t.7-.275t.7.275zm0-8l3.55-3.55q.3-.3.7-.288t.7.313q.275.3.275.7t-.275.7L6.25 10.3q-.3.3-.7.3t-.7-.3L2.7 8.15q-.275-.275-.275-.7t.275-.7t.7-.275t.7.275zM14 17q-.425 0-.712-.288T13 16t.288-.712T14 15h7q.425 0 .713.288T22 16t-.288.713T21 17zm0-8q-.425 0-.712-.288T13 8t.288-.712T14 7h7q.425 0 .713.288T22 8t-.288.713T21 9z"
15
+ />
16
+ </IconBase>
@@ -0,0 +1,4 @@
1
+ import type { IconProps } from "../types";
2
+ declare const CheckList: import("svelte").Component<IconProps, {}, "">;
3
+ type CheckList = ReturnType<typeof CheckList>;
4
+ export default CheckList;
@@ -0,0 +1,16 @@
1
+ <!-- src/lib/icons/BookEnds.svelte -->
2
+ <script lang="ts">
3
+ import IconBase from "../IconBase.svelte";
4
+ import type { IconProps } from "../types";
5
+
6
+ const props: IconProps = $props();
7
+ const ariaLabel = $derived(props.ariaLabel ?? "Book Ends");
8
+ const title = $derived(props.title ?? "");
9
+ </script>
10
+
11
+ <IconBase {...props} mode="solid" {ariaLabel} {title} viewBox="0 0 24 24">
12
+ <!-- Path sin fill fijo, que herede currentColor -->
13
+ <path
14
+ d="M6 22q-.825 0-1.412-.587T4 20V4q0-.825.588-1.412T6 2h12q.825 0 1.413.588T20 4v16q0 .825-.587 1.413T18 22zm4.2-13h3.6q.35 0 .475-.3t-.125-.55L12.7 6.7q-.3-.3-.7-.3t-.7.3L9.85 8.15q-.25.25-.125.55t.475.3m2.5 8.3l1.45-1.45q.25-.25.125-.55T13.8 15h-3.6q-.35 0-.475.3t.125.55l1.45 1.45q.3.3.7.3t.7-.3"
15
+ />
16
+ </IconBase>
@@ -0,0 +1,4 @@
1
+ import type { IconProps } from "../types";
2
+ declare const Height: import("svelte").Component<IconProps, {}, "">;
3
+ type Height = ReturnType<typeof Height>;
4
+ export default Height;
@@ -0,0 +1,16 @@
1
+ <!-- src/lib/icons/Logout.svelte -->
2
+ <script lang="ts">
3
+ import IconBase from "../IconBase.svelte";
4
+ import type { IconProps } from "../types";
5
+
6
+ const props: IconProps = $props();
7
+ const ariaLabel = $derived(props.ariaLabel ?? "Logout");
8
+ const title = $derived(props.title ?? "");
9
+ </script>
10
+
11
+ <IconBase {...props} mode="solid" {ariaLabel} {title} viewBox="0 0 24 24">
12
+ <!-- Path sin fill explícito, hereda currentColor -->
13
+ <path
14
+ d="M21 10h-8.01V7L9 11l3.99 4v-3H21v5H3V5h18v3h2V5c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2v-5H23c0-1.1-.9-2-2-2"
15
+ />
16
+ </IconBase>
@@ -0,0 +1,4 @@
1
+ import type { IconProps } from "../types";
2
+ declare const Reset: import("svelte").Component<IconProps, {}, "">;
3
+ type Reset = ReturnType<typeof Reset>;
4
+ export default Reset;
@@ -97,4 +97,8 @@ export declare const Icon: {
97
97
  stepDuration?: string;
98
98
  animationDuration?: string;
99
99
  }, {}, "">;
100
+ readonly Alternate: import("svelte").Component<import("..").IconProps, {}, "">;
101
+ readonly Height: import("svelte").Component<import("..").IconProps, {}, "">;
102
+ readonly Reset: import("svelte").Component<import("..").IconProps, {}, "">;
103
+ readonly CheckList: import("svelte").Component<import("..").IconProps, {}, "">;
100
104
  };
@@ -1,5 +1,6 @@
1
1
  // src/lib/icons/icon-bundle.ts
2
2
  // Importa todos los componentes directamente
3
+ import Alternate from "./Alternate.svelte";
3
4
  import AnimatedArrowLeft from "./AnimatedArrowLeft.svelte";
4
5
  import Aws from "./Aws.svelte";
5
6
  import Bag from "./Bag.svelte";
@@ -16,6 +17,7 @@ import CategorySearch from "./CategorySearch.svelte";
16
17
  import Chart from "./Chart.svelte";
17
18
  import ChartDoc from "./ChartDoc.svelte";
18
19
  import Check from "./Check.svelte";
20
+ import CheckList from "./CheckList.svelte";
19
21
  import CheckO from "./CheckO.svelte";
20
22
  import ChevronDown from "./ChevronDown.svelte";
21
23
  import ChevronUpDown from "./ChevronUpDown.svelte";
@@ -48,6 +50,7 @@ import Google from "./Google.svelte";
48
50
  import Group from "./Group.svelte";
49
51
  import Hamburguer from "./Hamburguer.svelte";
50
52
  import HandShake from "./HandShake.svelte";
53
+ import Height from "./Height.svelte";
51
54
  import Home from "./Home.svelte";
52
55
  import Image from "./Image.svelte";
53
56
  import ImageAnimated from "./ImageAnimated.svelte";
@@ -71,6 +74,7 @@ import Plus from "./Plus.svelte";
71
74
  import PointSale from "./PointSale.svelte";
72
75
  import Product from "./Product.svelte";
73
76
  import Project from "./Project.svelte";
77
+ import Reset from "./Reset.svelte";
74
78
  import RightArrow from "./RightArrow.svelte";
75
79
  import SafeSolid from "./SafeSolid.svelte";
76
80
  import Scan from "./Scan.svelte";
@@ -192,4 +196,8 @@ export const Icon = {
192
196
  EmailAnimated,
193
197
  ExcelAnimated,
194
198
  LoadingSquares,
199
+ Alternate,
200
+ Height,
201
+ Reset,
202
+ CheckList,
195
203
  };
@@ -117,6 +117,10 @@ export declare const iconRegistry: {
117
117
  readonly word: Component<import("..").IconProps, {}, "">;
118
118
  readonly xml: Component<import("..").IconProps, {}, "">;
119
119
  readonly zip: Component<import("..").IconProps, {}, "">;
120
+ readonly reset: Component<import("..").IconProps, {}, "">;
121
+ readonly height: Component<import("..").IconProps, {}, "">;
122
+ readonly alternate: Component<import("..").IconProps, {}, "">;
123
+ readonly checkList: Component<import("..").IconProps, {}, "">;
120
124
  };
121
125
  export type IconName = keyof typeof iconRegistry;
122
126
  export type IconComponent = Component;
@@ -1,4 +1,5 @@
1
1
  // 👉 Importa los componentes directamente, NO el objeto Icon
2
+ import Alternate from "./Alternate.svelte";
2
3
  import AnimatedArrowLeft from "./AnimatedArrowLeft.svelte";
3
4
  import Aws from "./Aws.svelte";
4
5
  import Bag from "./Bag.svelte";
@@ -16,6 +17,7 @@ import CategorySearch from "./CategorySearch.svelte";
16
17
  import Chart from "./Chart.svelte";
17
18
  import ChartDoc from "./ChartDoc.svelte";
18
19
  import Check from "./Check.svelte";
20
+ import CheckList from "./CheckList.svelte";
19
21
  import CheckO from "./CheckO.svelte";
20
22
  import ChevronDown from "./ChevronDown.svelte";
21
23
  import ChevronUpDown from "./ChevronUpDown.svelte";
@@ -52,6 +54,7 @@ import Google from "./Google.svelte";
52
54
  import Group from "./Group.svelte";
53
55
  import Hamburguer from "./Hamburguer.svelte";
54
56
  import HandShake from "./HandShake.svelte";
57
+ import Height from "./Height.svelte";
55
58
  import Home from "./Home.svelte";
56
59
  import Image from "./Image.svelte";
57
60
  import ImageAnimated from "./ImageAnimated.svelte";
@@ -80,6 +83,7 @@ import Powerpoint from "./Powerpoint.svelte";
80
83
  import Product from "./Product.svelte";
81
84
  import Project from "./Project.svelte";
82
85
  import LoadingRegular from "./RegularSpinner.svelte";
86
+ import Reset from "./Reset.svelte";
83
87
  import RightArrow from "./RightArrow.svelte";
84
88
  import SafeSolid from "./SafeSolid.svelte";
85
89
  import Scan from "./Scan.svelte";
@@ -223,4 +227,8 @@ export const iconRegistry = {
223
227
  word: Word,
224
228
  xml: Xml,
225
229
  zip: Zip,
230
+ reset: Reset,
231
+ height: Height,
232
+ alternate: Alternate,
233
+ checkList: CheckList,
226
234
  };