lucide-solid
Version:
A Lucide icon library package for Solid applications
21 lines (20 loc) • 1.27 kB
JSX
import Icon from '../Icon';
const iconNode = [
['circle', { cx: '12', cy: '12', r: '10', key: '1mglay' }],
['path', { d: 'm15 9-6 6', key: '1uzhvr' }],
['path', { d: 'M9 9h.01', key: '1q5me6' }],
['path', { d: 'M15 15h.01', key: 'lqbp3k' }],
];
/**
* @component @name PercentCircle
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/percent-circle
* @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 PercentCircle = (props) => (<Icon {...props} name="PercentCircle" iconNode={iconNode}/>);
export default PercentCircle;