lucide-solid
Version:
A Lucide icon library package for Solid applications
19 lines (18 loc) • 1.07 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M3 3v18h18', key: '1s2lah' }],
['path', { d: 'm19 9-5 5-4-4-3 3', key: '2osh9i' }],
];
/**
* @component @name LineChart
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/line-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 LineChart = (props) => <Icon {...props} name="LineChart" iconNode={iconNode}/>;
export default LineChart;