lucide-solid
Version:
A Lucide icon library package for Solid applications
22 lines (21 loc) • 1.33 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M16 12H3', key: '1a2rj7' }],
['path', { d: 'M16 6H3', key: '1wxfjs' }],
['path', { d: 'M10 18H3', key: '13769t' }],
['path', { d: 'M21 6v10a2 2 0 0 1-2 2h-5', key: 'ilrcs8' }],
['path', { d: 'm16 16-2 2 2 2', key: 'kkc6pm' }],
];
/**
* @component @name ListEnd
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/list-end
* @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 ListEnd = (props) => <Icon {...props} name="ListEnd" iconNode={iconNode}/>;
export default ListEnd;