lucide-solid
Version:
A Lucide icon library package for Solid applications
50 lines (45 loc) • 1.73 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: '18',
height: '18',
x: '3',
y: '3',
rx: '2',
key: 'afitv7'
}], ['path', {
d: 'M7 7h.01',
key: '7u93v4'
}], ['path', {
d: 'M17 7h.01',
key: '14a9sn'
}], ['path', {
d: 'M7 17h.01',
key: '19xn7k'
}], ['path', {
d: 'M17 17h.01',
key: '1sd3ek'
}]];
/**
* @component @name InspectionPanel
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/inspection-panel
* @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 InspectionPanel = props => createComponent(Icon, mergeProps(props, {
iconNode: iconNode,
name: "inspection-panel"
}));
export { InspectionPanel as default };
//# sourceMappingURL=inspection-panel.js.map