lucide-astro 0.256.1 → 0.258.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/Kanban.astro +44 -0
- package/dist/Table.astro +4 -4
- package/dist/TableProperties.astro +45 -0
- package/dist/index.d.ts +5 -3
- package/dist/index.js +5 -3
- package/package.json +2 -2
- /package/dist/{SquareGantt.astro → GanttChartSquare.astro} +0 -0
- /package/dist/{SquareKanban.astro → KanbanSquare.astro} +0 -0
- /package/dist/{SquareKanbanDashed.astro → KanbanSquareDashed.astro} +0 -0
@@ -0,0 +1,44 @@
|
|
1
|
+
---
|
2
|
+
export interface Props {
|
3
|
+
size?: number
|
4
|
+
width?: number
|
5
|
+
height?: number
|
6
|
+
strokeWidth?: number
|
7
|
+
stroke?: string
|
8
|
+
fill?: string
|
9
|
+
class?: string
|
10
|
+
viewBox?: string
|
11
|
+
strokeLinecap?: "round" | "butt" | "square" | "inherit"
|
12
|
+
strokeLinejoin?: "round" | "inherit" | "miter" | "bevel"
|
13
|
+
}
|
14
|
+
|
15
|
+
const {
|
16
|
+
size = 24,
|
17
|
+
strokeWidth = 2,
|
18
|
+
width = size,
|
19
|
+
height = size,
|
20
|
+
stroke = 'currentColor',
|
21
|
+
strokeLinecap = 'round',
|
22
|
+
strokeLinejoin = 'round',
|
23
|
+
fill = 'none',
|
24
|
+
viewBox = '0 0 24 24'
|
25
|
+
} = Astro.props
|
26
|
+
|
27
|
+
---
|
28
|
+
|
29
|
+
<svg
|
30
|
+
xmlns="http://www.w3.org/2000/svg"
|
31
|
+
class={Astro.props.class}
|
32
|
+
width={width}
|
33
|
+
height={height}
|
34
|
+
fill={fill}
|
35
|
+
viewBox={viewBox}
|
36
|
+
stroke={stroke}
|
37
|
+
stroke-width={strokeWidth}
|
38
|
+
stroke-linecap={strokeLinecap}
|
39
|
+
stroke-linejoin={strokeLinejoin}
|
40
|
+
>
|
41
|
+
<path d="M6 5v11" />
|
42
|
+
<path d="M12 5v6" />
|
43
|
+
<path d="M18 5v14" />
|
44
|
+
</svg>
|
package/dist/Table.astro
CHANGED
@@ -38,8 +38,8 @@ const {
|
|
38
38
|
stroke-linecap={strokeLinecap}
|
39
39
|
stroke-linejoin={strokeLinejoin}
|
40
40
|
>
|
41
|
-
<
|
42
|
-
<
|
43
|
-
<
|
44
|
-
<
|
41
|
+
<path d="M12 3v18" />
|
42
|
+
<rect width="18" height="18" x="3" y="3" rx="2" />
|
43
|
+
<path d="M3 9h18" />
|
44
|
+
<path d="M3 15h18" />
|
45
45
|
</svg>
|
@@ -0,0 +1,45 @@
|
|
1
|
+
---
|
2
|
+
export interface Props {
|
3
|
+
size?: number
|
4
|
+
width?: number
|
5
|
+
height?: number
|
6
|
+
strokeWidth?: number
|
7
|
+
stroke?: string
|
8
|
+
fill?: string
|
9
|
+
class?: string
|
10
|
+
viewBox?: string
|
11
|
+
strokeLinecap?: "round" | "butt" | "square" | "inherit"
|
12
|
+
strokeLinejoin?: "round" | "inherit" | "miter" | "bevel"
|
13
|
+
}
|
14
|
+
|
15
|
+
const {
|
16
|
+
size = 24,
|
17
|
+
strokeWidth = 2,
|
18
|
+
width = size,
|
19
|
+
height = size,
|
20
|
+
stroke = 'currentColor',
|
21
|
+
strokeLinecap = 'round',
|
22
|
+
strokeLinejoin = 'round',
|
23
|
+
fill = 'none',
|
24
|
+
viewBox = '0 0 24 24'
|
25
|
+
} = Astro.props
|
26
|
+
|
27
|
+
---
|
28
|
+
|
29
|
+
<svg
|
30
|
+
xmlns="http://www.w3.org/2000/svg"
|
31
|
+
class={Astro.props.class}
|
32
|
+
width={width}
|
33
|
+
height={height}
|
34
|
+
fill={fill}
|
35
|
+
viewBox={viewBox}
|
36
|
+
stroke={stroke}
|
37
|
+
stroke-width={strokeWidth}
|
38
|
+
stroke-linecap={strokeLinecap}
|
39
|
+
stroke-linejoin={strokeLinejoin}
|
40
|
+
>
|
41
|
+
<path d="M15 3v18" />
|
42
|
+
<rect width="18" height="18" x="3" y="3" rx="2" />
|
43
|
+
<path d="M21 9H3" />
|
44
|
+
<path d="M21 15H3" />
|
45
|
+
</svg>
|
package/dist/index.d.ts
CHANGED
@@ -549,6 +549,7 @@ export { default as GalleryVerticalEnd } from './GalleryVerticalEnd.astro'
|
|
549
549
|
export { default as GalleryVertical } from './GalleryVertical.astro'
|
550
550
|
export { default as Gamepad2 } from './Gamepad2.astro'
|
551
551
|
export { default as Gamepad } from './Gamepad.astro'
|
552
|
+
export { default as GanttChartSquare } from './GanttChartSquare.astro'
|
552
553
|
export { default as GanttChart } from './GanttChart.astro'
|
553
554
|
export { default as Gauge } from './Gauge.astro'
|
554
555
|
export { default as Gavel } from './Gavel.astro'
|
@@ -628,6 +629,9 @@ export { default as IterationCcw } from './IterationCcw.astro'
|
|
628
629
|
export { default as IterationCw } from './IterationCw.astro'
|
629
630
|
export { default as JapaneseYen } from './JapaneseYen.astro'
|
630
631
|
export { default as Joystick } from './Joystick.astro'
|
632
|
+
export { default as KanbanSquareDashed } from './KanbanSquareDashed.astro'
|
633
|
+
export { default as KanbanSquare } from './KanbanSquare.astro'
|
634
|
+
export { default as Kanban } from './Kanban.astro'
|
631
635
|
export { default as KeyRound } from './KeyRound.astro'
|
632
636
|
export { default as KeySquare } from './KeySquare.astro'
|
633
637
|
export { default as Key } from './Key.astro'
|
@@ -1014,9 +1018,6 @@ export { default as SquareDashedBottomCode } from './SquareDashedBottomCode.astr
|
|
1014
1018
|
export { default as SquareDashedBottom } from './SquareDashedBottom.astro'
|
1015
1019
|
export { default as SquareDot } from './SquareDot.astro'
|
1016
1020
|
export { default as SquareEqual } from './SquareEqual.astro'
|
1017
|
-
export { default as SquareGantt } from './SquareGantt.astro'
|
1018
|
-
export { default as SquareKanbanDashed } from './SquareKanbanDashed.astro'
|
1019
|
-
export { default as SquareKanban } from './SquareKanban.astro'
|
1020
1021
|
export { default as SquareSlash } from './SquareSlash.astro'
|
1021
1022
|
export { default as SquareStack } from './SquareStack.astro'
|
1022
1023
|
export { default as Square } from './Square.astro'
|
@@ -1051,6 +1052,7 @@ export { default as Sword } from './Sword.astro'
|
|
1051
1052
|
export { default as Swords } from './Swords.astro'
|
1052
1053
|
export { default as Syringe } from './Syringe.astro'
|
1053
1054
|
export { default as Table2 } from './Table2.astro'
|
1055
|
+
export { default as TableProperties } from './TableProperties.astro'
|
1054
1056
|
export { default as Table } from './Table.astro'
|
1055
1057
|
export { default as Tablet } from './Tablet.astro'
|
1056
1058
|
export { default as Tablets } from './Tablets.astro'
|
package/dist/index.js
CHANGED
@@ -549,6 +549,7 @@ export { default as GalleryVerticalEnd } from './GalleryVerticalEnd.astro'
|
|
549
549
|
export { default as GalleryVertical } from './GalleryVertical.astro'
|
550
550
|
export { default as Gamepad2 } from './Gamepad2.astro'
|
551
551
|
export { default as Gamepad } from './Gamepad.astro'
|
552
|
+
export { default as GanttChartSquare } from './GanttChartSquare.astro'
|
552
553
|
export { default as GanttChart } from './GanttChart.astro'
|
553
554
|
export { default as Gauge } from './Gauge.astro'
|
554
555
|
export { default as Gavel } from './Gavel.astro'
|
@@ -628,6 +629,9 @@ export { default as IterationCcw } from './IterationCcw.astro'
|
|
628
629
|
export { default as IterationCw } from './IterationCw.astro'
|
629
630
|
export { default as JapaneseYen } from './JapaneseYen.astro'
|
630
631
|
export { default as Joystick } from './Joystick.astro'
|
632
|
+
export { default as KanbanSquareDashed } from './KanbanSquareDashed.astro'
|
633
|
+
export { default as KanbanSquare } from './KanbanSquare.astro'
|
634
|
+
export { default as Kanban } from './Kanban.astro'
|
631
635
|
export { default as KeyRound } from './KeyRound.astro'
|
632
636
|
export { default as KeySquare } from './KeySquare.astro'
|
633
637
|
export { default as Key } from './Key.astro'
|
@@ -1014,9 +1018,6 @@ export { default as SquareDashedBottomCode } from './SquareDashedBottomCode.astr
|
|
1014
1018
|
export { default as SquareDashedBottom } from './SquareDashedBottom.astro'
|
1015
1019
|
export { default as SquareDot } from './SquareDot.astro'
|
1016
1020
|
export { default as SquareEqual } from './SquareEqual.astro'
|
1017
|
-
export { default as SquareGantt } from './SquareGantt.astro'
|
1018
|
-
export { default as SquareKanbanDashed } from './SquareKanbanDashed.astro'
|
1019
|
-
export { default as SquareKanban } from './SquareKanban.astro'
|
1020
1021
|
export { default as SquareSlash } from './SquareSlash.astro'
|
1021
1022
|
export { default as SquareStack } from './SquareStack.astro'
|
1022
1023
|
export { default as Square } from './Square.astro'
|
@@ -1051,6 +1052,7 @@ export { default as Sword } from './Sword.astro'
|
|
1051
1052
|
export { default as Swords } from './Swords.astro'
|
1052
1053
|
export { default as Syringe } from './Syringe.astro'
|
1053
1054
|
export { default as Table2 } from './Table2.astro'
|
1055
|
+
export { default as TableProperties } from './TableProperties.astro'
|
1054
1056
|
export { default as Table } from './Table.astro'
|
1055
1057
|
export { default as Tablet } from './Tablet.astro'
|
1056
1058
|
export { default as Tablets } from './Tablets.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.258.0",
|
4
4
|
"description": "Get your Lucide icons right into your Astro project",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"homepage": "https://github.com/dzeiocom/lucide-astro",
|
@@ -22,7 +22,7 @@
|
|
22
22
|
"author": "Aviortheking",
|
23
23
|
"license": "MIT",
|
24
24
|
"devDependencies": {
|
25
|
-
"lucide-static": "0.
|
25
|
+
"lucide-static": "0.258.0"
|
26
26
|
},
|
27
27
|
"peerDependencies": {
|
28
28
|
"astro": "^2.7.1"
|
File without changes
|
File without changes
|
File without changes
|