lucide-solid
Version:
A Lucide icon library package for Solid applications
22 lines (21 loc) • 1.36 kB
JSX
import Icon from '../Icon';
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) => <Icon {...props} name="ListTree" iconNode={iconNode}/>;
export default ListTree;