lucide-solid
Version:
A Lucide icon library package for Solid applications
46 lines (41 loc) • 1.67 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 = [['path', {
d: 'M21 12h-8',
key: '1bmf0i'
}], ['path', {
d: 'M21 6H8',
key: '1pqkrb'
}], ['path', {
d: 'M21 18h-8',
key: '1tm79t'
}], ['path', {
d: 'M3 6v4c0 1.1.9 2 2 2h3',
key: '1ywdgy'
}], ['path', {
d: 'M3 10v6c0 1.1.9 2 2 2h3',
key: '2wc746'
}]];
/**
* @component @name ListTree
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/list-tree
* @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 ListTree = props => createComponent(Icon, mergeProps(props, {
iconNode: iconNode,
name: "list-tree"
}));
export { ListTree as default };
//# sourceMappingURL=list-tree.js.map