lucide-solid
Version:
A Lucide icon library package for Solid applications
20 lines (19 loc) • 1.26 kB
JSX
import Icon from '../Icon';
const iconNode = [
['rect', { width: '18', height: '18', x: '3', y: '3', rx: '2', key: 'afitv7' }],
['path', { d: 'M8 8h8v8', key: 'b65dnt' }],
['path', { d: 'm8 16 8-8', key: '13b9ih' }],
];
/**
* @component @name ArrowUpRightSquare
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/arrow-up-right-square
* @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 ArrowUpRightSquare = (props) => (<Icon {...props} name="ArrowUpRightSquare" iconNode={iconNode}/>);
export default ArrowUpRightSquare;