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