lucide-solid
Version:
A Lucide icon library package for Solid applications
19 lines (18 loc) • 1.14 kB
JSX
import Icon from '../Icon';
const iconNode = [
['polyline', { points: '10 9 15 4 20 9', key: '1lr6px' }],
['path', { d: 'M4 20h7a4 4 0 0 0 4-4V4', key: '1plgdj' }],
];
/**
* @component @name CornerRightUp
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/corner-right-up
* @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 CornerRightUp = (props) => (<Icon {...props} name="CornerRightUp" iconNode={iconNode}/>);
export default CornerRightUp;