lucide-solid
Version:
A Lucide icon library package for Solid applications
22 lines (21 loc) • 1.49 kB
JSX
import Icon from '../Icon';
const iconNode = [
['circle', { cx: '19', cy: '19', r: '2', key: '17f5cg' }],
['circle', { cx: '5', cy: '5', r: '2', key: '1gwv83' }],
['path', { d: 'M6.48 3.66a10 10 0 0 1 13.86 13.86', key: 'xr8kdq' }],
['path', { d: 'm6.41 6.41 11.18 11.18', key: 'uhpjw7' }],
['path', { d: 'M3.66 6.48a10 10 0 0 0 13.86 13.86', key: 'cldpwv' }],
];
/**
* @component @name Diameter
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/diameter
* @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 Diameter = (props) => <Icon {...props} name="Diameter" iconNode={iconNode}/>;
export default Diameter;