lucide-solid
Version:
A Lucide icon library package for Solid applications
20 lines (19 loc) • 1.38 kB
JSX
import Icon from '../Icon';
const iconNode = [
['rect', { width: '7', height: '18', x: '3', y: '3', rx: '1', key: '2obqm' }],
['rect', { width: '7', height: '7', x: '14', y: '3', rx: '1', key: '6d4xhi' }],
['rect', { width: '7', height: '7', x: '14', y: '14', rx: '1', key: 'nxv5o0' }],
];
/**
* @component @name LayoutPanelLeft
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/layout-panel-left
* @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 LayoutPanelLeft = (props) => (<Icon {...props} name="LayoutPanelLeft" iconNode={iconNode}/>);
export default LayoutPanelLeft;