@lucide/astro 1.45.0 → 1.46.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.
@@ -0,0 +1,20 @@
1
+
2
+ import createLucideIcon from '../createLucideIcon';
3
+ import type { AstroComponent, LucideIconData } from '../types'
4
+
5
+ const iconData: LucideIconData = {"name":"monitor-pc","size":24,"node":[["path",{"d":"M10 15H4a2 2 0 01-2-2V7a2 2 0 012-2h6"}],["path",{"d":"M10 19H5"}],["path",{"d":"M14 11h8"}],["path",{"d":"M14 7h8"}],["path",{"d":"M18 17h.01"}],["path",{"d":"M9 19v-4"}],["rect",{"x":"14","y":"3","width":"8","height":"18","rx":"1"}]]};
6
+
7
+ /**
8
+ * @component @name MonitorPc
9
+ * @description Lucide SVG icon component, renders SVG Element with children.
10
+ *
11
+ * @preview ![img](data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogIHdpZHRoPSIyNCIKICBoZWlnaHQ9IjI0IgogIHZpZXdCb3g9IjAgMCAyNCAyNCIKICBmaWxsPSJub25lIgogIHN0cm9rZT0iIzAwMCIgc3R5bGU9ImJhY2tncm91bmQtY29sb3I6ICNmZmY7IGJvcmRlci1yYWRpdXM6IDJweCIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCj4KICA8cGF0aCBkPSJNMTAgMTVINGEyIDIgMCAwMS0yLTJWN2EyIDIgMCAwMTItMmg2IiAvPgogIDxwYXRoIGQ9Ik0xMCAxOUg1IiAvPgogIDxwYXRoIGQ9Ik0xNCAxMWg4IiAvPgogIDxwYXRoIGQ9Ik0xNCA3aDgiIC8+CiAgPHBhdGggZD0iTTE4IDE3aC4wMSIgLz4KICA8cGF0aCBkPSJNOSAxOXYtNCIgLz4KICA8cmVjdCB4PSIxNCIgeT0iMyIgd2lkdGg9IjgiIGhlaWdodD0iMTgiIHJ4PSIxIiAvPgo8L3N2Zz4K) - https://lucide.dev/icons/monitor-pc
12
+ * @see https://lucide.dev/guide/packages/lucide-astro - Documentation
13
+ *
14
+ * @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
15
+ * @returns {any} Astro Component
16
+ *
17
+ */
18
+ const MonitorPc = createLucideIcon(iconData) as AstroComponent;
19
+
20
+ export default MonitorPc;