lucide-solid
Version:
A Lucide icon library package for Solid applications
25 lines (24 loc) • 1.36 kB
JSX
import Icon from '../Icon';
const iconNode = [
['rect', { width: '7', height: '7', x: '14', y: '3', rx: '1', key: '6d4xhi' }],
[
'path',
{
d: 'M10 21V8a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-5a1 1 0 0 0-1-1H3',
key: '1fpvtg',
},
],
];
/**
* @component @name Blocks
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/blocks
* @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 Blocks = (props) => <Icon {...props} name="Blocks" iconNode={iconNode}/>;
export default Blocks;