lucide-solid
Version:
A Lucide icon library package for Solid applications
50 lines (45 loc) • 1.73 kB
JavaScript
/**
* @license lucide-solid v0.487.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
import { createComponent, mergeProps } from 'solid-js/web';
import Icon from '../Icon.js';
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 => createComponent(Icon, mergeProps(props, {
iconNode: iconNode,
name: "gallery-thumbnails"
}));
export { GalleryThumbnails as default };
//# sourceMappingURL=gallery-thumbnails.js.map