lucide-solid
Version:
A Lucide icon library package for Solid applications
22 lines (21 loc) • 1.54 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M17 18a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2', key: '1mghuy' }],
['rect', { width: '18', height: '18', x: '3', y: '4', rx: '2', key: '1hopcy' }],
['circle', { cx: '12', cy: '10', r: '2', key: '1yojzk' }],
['line', { x1: '8', x2: '8', y1: '2', y2: '4', key: '1ff9gb' }],
['line', { x1: '16', x2: '16', y1: '2', y2: '4', key: '1ufoma' }],
];
/**
* @component @name Contact
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/contact
* @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 Contact = (props) => <Icon {...props} name="Contact" iconNode={iconNode}/>;
export default Contact;