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