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 = [
['circle', { cx: '12', cy: '12', r: '10', key: '1mglay' }],
['path', { d: 'M16 12H8', key: '1fr5h0' }],
['path', { d: 'm12 8-4 4 4 4', key: '15vm53' }],
];
/**
* @component @name ArrowLeftCircle
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/arrow-left-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 ArrowLeftCircle = (props) => (<Icon {...props} name="ArrowLeftCircle" iconNode={iconNode}/>);
export default ArrowLeftCircle;