lucide-solid
Version:
A Lucide icon library package for Solid applications
20 lines (19 loc) • 1.13 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M8 6h10', key: '9lnwnk' }],
['path', { d: 'M6 12h9', key: '1g9pqf' }],
['path', { d: 'M11 18h7', key: 'c8dzvl' }],
];
/**
* @component @name GanttChart
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/gantt-chart
* @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 GanttChart = (props) => (<Icon {...props} name="GanttChart" iconNode={iconNode}/>);
export default GanttChart;