lucide-solid
Version:
A Lucide icon library package for Solid applications
52 lines (47 loc) • 1.77 kB
JavaScript
/**
* @license lucide-solid v0.487.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
import { createComponent, mergeProps } from 'solid-js/web';
import Icon from '../Icon.js';
const iconNode = [['path', {
d: 'M16 2v2',
key: 'scm5qe'
}], ['path', {
d: 'M17.915 22a6 6 0 0 0-12 0',
key: 'suqz9p'
}], ['path', {
d: 'M8 2v2',
key: 'pbkmx'
}], ['circle', {
cx: '12',
cy: '12',
r: '4',
key: '4exip2'
}], ['rect', {
x: '3',
y: '4',
width: '18',
height: '18',
rx: '2',
key: '12vinp'
}]];
/**
* @component @name ContactRound
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/contact-round
* @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 ContactRound = props => createComponent(Icon, mergeProps(props, {
iconNode: iconNode,
name: "contact-round"
}));
export { ContactRound as default };
//# sourceMappingURL=contact-round.js.map