lucide-solid
Version:
A Lucide icon library package for Solid applications
22 lines (21 loc) • 1.4 kB
JSX
import Icon from '../Icon';
const iconNode = [
['rect', { width: '18', height: '18', x: '3', y: '3', rx: '2', key: 'afitv7' }],
['path', { d: 'M15 14v1', key: 'ilsfch' }],
['path', { d: 'M15 19v2', key: '1fst2f' }],
['path', { d: 'M15 3v2', key: 'z204g4' }],
['path', { d: 'M15 9v1', key: 'z2a8b1' }],
];
/**
* @component @name PanelRightDashed
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/panel-right-dashed
* @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 PanelRightDashed = (props) => (<Icon {...props} name="PanelRightDashed" iconNode={iconNode}/>);
export default PanelRightDashed;