lucide-solid
Version:
A Lucide icon library package for Solid applications
21 lines (20 loc) • 1.21 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M3 3v18h18', key: '1s2lah' }],
['path', { d: 'M13 17V9', key: '1fwyjl' }],
['path', { d: 'M18 17V5', key: 'sfb6ij' }],
['path', { d: 'M8 17v-3', key: '17ska0' }],
];
/**
* @component @name BarChart4
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/bar-chart-4
* @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 BarChart4 = (props) => <Icon {...props} name="BarChart4" iconNode={iconNode}/>;
export default BarChart4;