lucide-solid
Version:
A Lucide icon library package for Solid applications
20 lines (19 loc) • 1.29 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M3 3v18h18', key: '1s2lah' }],
['rect', { width: '4', height: '7', x: '7', y: '10', rx: '1', key: '14u6mf' }],
['rect', { width: '4', height: '12', x: '15', y: '5', rx: '1', key: 'b3pek6' }],
];
/**
* @component @name BarChartBig
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/bar-chart-big
* @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 BarChartBig = (props) => (<Icon {...props} name="BarChartBig" iconNode={iconNode}/>);
export default BarChartBig;