lucide-solid
Version:
A Lucide icon library package for Solid applications
22 lines (21 loc) • 1.4 kB
JSX
import Icon from '../Icon';
const iconNode = [
['rect', { width: '18', height: '14', x: '3', y: '3', rx: '2', key: '74y24f' }],
['path', { d: 'M4 21h1', key: '16zlid' }],
['path', { d: 'M9 21h1', key: '15o7lz' }],
['path', { d: 'M14 21h1', key: 'v9vybs' }],
['path', { d: 'M19 21h1', key: 'edywat' }],
];
/**
* @component @name GalleryThumbnails
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/gallery-thumbnails
* @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 GalleryThumbnails = (props) => (<Icon {...props} name="GalleryThumbnails" iconNode={iconNode}/>);
export default GalleryThumbnails;