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: '9 14 4 9 9 4', key: '881910' }],
['path', { d: 'M20 20v-7a4 4 0 0 0-4-4H4', key: '1nkjon' }],
];
/**
* @component @name CornerUpLeft
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/corner-up-left
* @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 CornerUpLeft = (props) => (<Icon {...props} name="CornerUpLeft" iconNode={iconNode}/>);
export default CornerUpLeft;