lucide-solid
Version:
A Lucide icon library package for Solid applications
20 lines (19 loc) • 1.18 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z', key: 'a7tn18' }],
['path', { d: 'M19 3v4', key: 'vgv24u' }],
['path', { d: 'M21 5h-4', key: '1wcg1f' }],
];
/**
* @component @name MoonStar
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/moon-star
* @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 MoonStar = (props) => <Icon {...props} name="MoonStar" iconNode={iconNode}/>;
export default MoonStar;