lucide-solid
Version:
A Lucide icon library package for Solid applications
24 lines (23 loc) • 1.53 kB
JSX
import Icon from '../Icon';
const iconNode = [
['rect', { width: '16', height: '16', x: '4', y: '3', rx: '2', key: '1wxw4b' }],
['path', { d: 'M4 11h16', key: 'mpoxn0' }],
['path', { d: 'M12 3v8', key: '1h2ygw' }],
['path', { d: 'm8 19-2 3', key: '13i0xs' }],
['path', { d: 'm18 22-2-3', key: '1p0ohu' }],
['path', { d: 'M8 15h0', key: 'q9eq1f' }],
['path', { d: 'M16 15h0', key: 'pzrbjg' }],
];
/**
* @component @name TramFront
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/tram-front
* @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 TramFront = (props) => <Icon {...props} name="TramFront" iconNode={iconNode}/>;
export default TramFront;