@lucide/astro 0.540.0 → 0.541.0
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/package.json +1 -1
- package/src/aliases/aliases.ts +66 -60
- package/src/aliases/prefixed.ts +489 -481
- package/src/aliases/suffixed.ts +880 -872
- package/src/icons/building.ts +2 -2
- package/src/icons/{chrome.ts → chromium.ts} +5 -5
- package/src/icons/cog.ts +2 -2
- package/src/icons/index.ts +140 -138
- package/src/icons/panel-left-right-dashed.ts +18 -0
- package/src/icons/panel-top-bottom-dashed.ts +18 -0
- package/src/icons/wallpaper.ts +2 -2
package/src/icons/building.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Building
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/building
|
|
10
10
|
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
11
11
|
*
|
|
12
12
|
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
13
13
|
* @returns {any} Astro Component
|
|
14
14
|
*
|
|
15
15
|
*/
|
|
16
|
-
const Building = createLucideIcon('building', [["
|
|
16
|
+
const Building = createLucideIcon('building', [["path",{"d":"M12 10h.01"}],["path",{"d":"M12 14h.01"}],["path",{"d":"M12 6h.01"}],["path",{"d":"M16 10h.01"}],["path",{"d":"M16 14h.01"}],["path",{"d":"M16 6h.01"}],["path",{"d":"M8 10h.01"}],["path",{"d":"M8 14h.01"}],["path",{"d":"M8 6h.01"}],["path",{"d":"M9 22v-3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v3"}],["rect",{"x":"4","y":"2","width":"16","height":"20","rx":"2"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Building;
|
|
@@ -3,16 +3,16 @@ import createLucideIcon from '../createLucideIcon';
|
|
|
3
3
|
import type { AstroComponent } from '../types'
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
|
-
* @component @name
|
|
6
|
+
* @component @name Chromium
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/chromium
|
|
10
10
|
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
11
11
|
*
|
|
12
12
|
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
13
13
|
* @returns {any} Astro Component
|
|
14
|
-
* @deprecated Brand icons have been deprecated and are due to be removed, please refer to https://github.com/lucide-icons/lucide/issues/670. We recommend using https://simpleicons.org/?q=
|
|
14
|
+
* @deprecated Brand icons have been deprecated and are due to be removed, please refer to https://github.com/lucide-icons/lucide/issues/670. We recommend using https://simpleicons.org/?q=chromium instead. This icon will be removed in v1.0
|
|
15
15
|
*/
|
|
16
|
-
const
|
|
16
|
+
const Chromium = createLucideIcon('chromium', [["path",{"d":"M10.88 21.94 15.46 14"}],["path",{"d":"M21.17 8H12"}],["path",{"d":"M3.95 6.06 8.54 14"}],["circle",{"cx":"12","cy":"12","r":"10"}],["circle",{"cx":"12","cy":"12","r":"4"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
|
-
export default
|
|
18
|
+
export default Chromium;
|
package/src/icons/cog.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Cog
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/cog
|
|
10
10
|
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
11
11
|
*
|
|
12
12
|
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
13
13
|
* @returns {any} Astro Component
|
|
14
14
|
*
|
|
15
15
|
*/
|
|
16
|
-
const Cog = createLucideIcon('cog', [["path",{"d":"
|
|
16
|
+
const Cog = createLucideIcon('cog', [["path",{"d":"M11 10.27 7 3.34"}],["path",{"d":"m11 13.73-4 6.93"}],["path",{"d":"M12 22v-2"}],["path",{"d":"M12 2v2"}],["path",{"d":"M14 12h8"}],["path",{"d":"m17 20.66-1-1.73"}],["path",{"d":"m17 3.34-1 1.73"}],["path",{"d":"M2 12h2"}],["path",{"d":"m20.66 17-1.73-1"}],["path",{"d":"m20.66 7-1.73 1"}],["path",{"d":"m3.34 17 1.73-1"}],["path",{"d":"m3.34 7 1.73 1"}],["circle",{"cx":"12","cy":"12","r":"2"}],["circle",{"cx":"12","cy":"12","r":"8"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Cog;
|