lucide-solid
Version:
A Lucide icon library package for Solid applications
22 lines (21 loc) • 1.41 kB
JSX
import Icon from '../Icon';
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) => (<Icon {...props} name="InspectionPanel" iconNode={iconNode}/>);
export default InspectionPanel;