lucide-solid
Version:
A Lucide icon library package for Solid applications
23 lines (22 loc) • 1.43 kB
JSX
import Icon from '../Icon';
const iconNode = [
['circle', { cx: '12', cy: '12', r: '10', key: '1mglay' }],
['path', { d: 'M16 16s-1.5-2-4-2-4 2-4 2', key: 'epbg0q' }],
['path', { d: 'M7.5 8 10 9', key: 'olxxln' }],
['path', { d: 'm14 9 2.5-1', key: '1j6cij' }],
['path', { d: 'M9 10h0', key: '1vxvly' }],
['path', { d: 'M15 10h0', key: '1j6oav' }],
];
/**
* @component @name Angry
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/angry
* @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 Angry = (props) => <Icon {...props} name="Angry" iconNode={iconNode}/>;
export default Angry;