lucide-solid
Version:
A Lucide icon library package for Solid applications
20 lines (19 loc) • 1.24 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M7.9 20A9 9 0 1 0 4 16.1L2 22Z', key: 'vv11sd' }],
['path', { d: 'M12 8v4', key: '1got3b' }],
['path', { d: 'M12 16h.01', key: '1drbdi' }],
];
/**
* @component @name MessageCircleWarning
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/message-circle-warning
* @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 MessageCircleWarning = (props) => (<Icon {...props} name="MessageCircleWarning" iconNode={iconNode}/>);
export default MessageCircleWarning;