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 = [
['path', { d: 'M2 3h20', key: '91anmk' }],
['path', { d: 'M21 3v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3', key: '2k9sn8' }],
['path', { d: 'm7 21 5-5 5 5', key: 'bip4we' }],
];
/**
* @component @name Presentation
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/presentation
* @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 Presentation = (props) => (<Icon {...props} name="Presentation" iconNode={iconNode}/>);
export default Presentation;