@lucide/astro 1.32.0 → 1.34.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 +124 -124
- package/src/aliases/prefixed.ts +712 -696
- package/src/aliases/suffixed.ts +1043 -1027
- package/src/icons/audio-lines-off.ts +18 -0
- package/src/icons/index.ts +208 -200
- package/src/icons/list-clock.ts +18 -0
- package/src/icons/mail-clock.ts +18 -0
- package/src/icons/midi-port.ts +18 -0
- package/src/icons/mop-sparkles.ts +18 -0
- package/src/icons/mop.ts +18 -0
- package/src/icons/square-dimensions.ts +18 -0
- package/src/icons/usb-c-port.ts +18 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name AudioLinesOff
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/audio-lines-off
|
|
10
|
+
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
11
|
+
*
|
|
12
|
+
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
13
|
+
* @returns {any} Astro Component
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
const AudioLinesOff = createLucideIcon('audio-lines-off', [["path",{"d":"M10 10v11"}],["path",{"d":"M10 3v1.35"}],["path",{"d":"M14 14v1"}],["path",{"d":"M14 8v.35"}],["path",{"d":"M18 5v7.35"}],["path",{"d":"M2 10v3"}],["path",{"d":"m2 2 20 20"}],["path",{"d":"M22 10v3"}],["path",{"d":"M6 6v11"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default AudioLinesOff;
|