lucide-solid
Version:
A Lucide icon library package for Solid applications
20 lines (19 loc) • 1.24 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M22 12A10 10 0 1 1 12 2', key: '1fm58d' }],
['path', { d: 'M22 2 12 12', key: 'yg2myt' }],
['path', { d: 'M16 2h6v6', key: 'zan5cs' }],
];
/**
* @component @name ArrowUpRightFromCircle
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/arrow-up-right-from-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 ArrowUpRightFromCircle = (props) => (<Icon {...props} name="ArrowUpRightFromCircle" iconNode={iconNode}/>);
export default ArrowUpRightFromCircle;