lucide-solid
Version:
A Lucide icon library package for Solid applications
47 lines (42 loc) • 1.63 kB
JavaScript
/**
* @license lucide-solid v0.487.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
import { createComponent, mergeProps } from 'solid-js/web';
import Icon from '../Icon.js';
const iconNode = [['rect', {
width: '20',
height: '16',
x: '2',
y: '4',
rx: '2',
key: '18n3k1'
}], ['path', {
d: 'M6 8h.01',
key: 'x9i8wu'
}], ['path', {
d: 'M10 8h.01',
key: '1r9ogq'
}], ['path', {
d: 'M14 8h.01',
key: '1primd'
}]];
/**
* @component @name AppWindowMac
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/app-window-mac
* @see https://lucide.dev/guide/packages/lucide-solid - Documentation
*
* @param {Object} props - Lucide icons props and any valid SVG attribute
* @returns {JSX.Element} JSX Element
*
*/
const AppWindowMac = props => createComponent(Icon, mergeProps(props, {
iconNode: iconNode,
name: "app-window-mac"
}));
export { AppWindowMac as default };
//# sourceMappingURL=app-window-mac.js.map