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