lucide-solid
Version:
A Lucide icon library package for Solid applications
21 lines (20 loc) • 1.25 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M3 3v18h18', key: '1s2lah' }],
['path', { d: 'M7 16h8', key: 'srdodz' }],
['path', { d: 'M7 11h12', key: '127s9w' }],
['path', { d: 'M7 6h3', key: 'w9rmul' }],
];
/**
* @component @name BarChartHorizontal
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/bar-chart-horizontal
* @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 BarChartHorizontal = (props) => (<Icon {...props} name="BarChartHorizontal" iconNode={iconNode}/>);
export default BarChartHorizontal;