lucide-solid
Version:
A Lucide icon library package for Solid applications
19 lines (18 loc) • 1.08 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M7 7h10v10', key: '1tivn9' }],
['path', { d: 'M7 17 17 7', key: '1vkiza' }],
];
/**
* @component @name ArrowUpRight
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/arrow-up-right
* @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 ArrowUpRight = (props) => (<Icon {...props} name="ArrowUpRight" iconNode={iconNode}/>);
export default ArrowUpRight;