lucide-solid
Version:
A Lucide icon library package for Solid applications
20 lines (19 loc) • 1.23 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M18 6H5a2 2 0 0 0-2 2v3a2 2 0 0 0 2 2h13l4-3.5L18 6Z', key: '1mp5s7' }],
['path', { d: 'M12 13v8', key: '1l5pq0' }],
['path', { d: 'M12 3v3', key: '1n5kay' }],
];
/**
* @component @name Milestone
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/milestone
* @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 Milestone = (props) => <Icon {...props} name="Milestone" iconNode={iconNode}/>;
export default Milestone;