lucide-solid
Version:
A Lucide icon library package for Solid applications
20 lines (19 loc) • 1.26 kB
JSX
import Icon from '../Icon';
const iconNode = [
['rect', { width: '18', height: '18', x: '3', y: '3', rx: '2', key: 'afitv7' }],
['path', { d: 'm16 8-8 8', key: '166keh' }],
['path', { d: 'M16 16H8V8', key: '1w2ppm' }],
];
/**
* @component @name ArrowDownLeftSquare
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/arrow-down-left-square
* @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 ArrowDownLeftSquare = (props) => (<Icon {...props} name="ArrowDownLeftSquare" iconNode={iconNode}/>);
export default ArrowDownLeftSquare;