lucide-solid
Version:
A Lucide icon library package for Solid applications
20 lines (19 loc) • 1.21 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: 'm15 9-6 6', key: '1uzhvr' }],
['path', { d: 'm9 9 6 6', key: 'z0biqf' }],
];
/**
* @component @name MessageCircleX
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/message-circle-x
* @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 MessageCircleX = (props) => (<Icon {...props} name="MessageCircleX" iconNode={iconNode}/>);
export default MessageCircleX;