lucide-solid
Version:
A Lucide icon library package for Solid applications
20 lines (19 loc) • 1.23 kB
JSX
import Icon from '../Icon';
const iconNode = [
['rect', { width: '18', height: '18', x: '3', y: '3', rx: '2', key: 'afitv7' }],
['path', { d: 'M3 9h18', key: '1pudct' }],
['path', { d: 'M9 21V9', key: '1oto5p' }],
];
/**
* @component @name PanelsTopLeft
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/panels-top-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 PanelsTopLeft = (props) => (<Icon {...props} name="PanelsTopLeft" iconNode={iconNode}/>);
export default PanelsTopLeft;