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: '10 15 15 20 20 15', key: 'axus6l' }],
['path', { d: 'M4 4h7a4 4 0 0 1 4 4v12', key: 'wcbgct' }],
];
/**
* @component @name CornerRightDown
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/corner-right-down
* @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 CornerRightDown = (props) => (<Icon {...props} name="CornerRightDown" iconNode={iconNode}/>);
export default CornerRightDown;