lucide-solid
Version:
A Lucide icon library package for Solid applications
25 lines (24 loc) • 1.44 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M4 12h8', key: '17cfdx' }],
['path', { d: 'M4 18V6', key: '1rz3zl' }],
['path', { d: 'M12 18V6', key: 'zqpxq5' }],
['path', { d: 'M17 13v-3h4', key: '1nvgqp' }],
[
'path',
{ d: 'M17 17.7c.4.2.8.3 1.3.3 1.5 0 2.7-1.1 2.7-2.5S19.8 13 18.3 13H17', key: '2nebdn' },
],
];
/**
* @component @name Heading5
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/heading-5
* @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 Heading5 = (props) => <Icon {...props} name="Heading5" iconNode={iconNode}/>;
export default Heading5;