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