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