lucide-solid
Version:
A Lucide icon library package for Solid applications
20 lines (19 loc) • 1.27 kB
JSX
import Icon from '../Icon';
const iconNode = [
['line', { x1: '12', x2: '12', y1: '20', y2: '10', key: '1vz5eb' }],
['line', { x1: '18', x2: '18', y1: '20', y2: '4', key: 'cun8e5' }],
['line', { x1: '6', x2: '6', y1: '20', y2: '16', key: 'hq0ia6' }],
];
/**
* @component @name BarChart
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/bar-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 BarChart = (props) => <Icon {...props} name="BarChart" iconNode={iconNode}/>;
export default BarChart;