lucide-solid
Version:
A Lucide icon library package for Solid applications
20 lines (19 loc) • 1.25 kB
JSX
import Icon from '../Icon';
const iconNode = [
['rect', { width: '18', height: '18', x: '3', y: '3', rx: '2', key: 'afitv7' }],
['path', { d: 'M15 3v18', key: '14nvp0' }],
['path', { d: 'm8 9 3 3-3 3', key: '12hl5m' }],
];
/**
* @component @name PanelRightClose
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/panel-right-close
* @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 PanelRightClose = (props) => (<Icon {...props} name="PanelRightClose" iconNode={iconNode}/>);
export default PanelRightClose;