lucide-solid
Version:
A Lucide icon library package for Solid applications
19 lines (18 loc) • 1.28 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M21 9V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h4', key: 'daa4of' }],
['rect', { width: '10', height: '7', x: '12', y: '13', rx: '2', key: '1nb8gs' }],
];
/**
* @component @name PictureInPicture2
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/picture-in-picture-2
* @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 PictureInPicture2 = (props) => (<Icon {...props} name="PictureInPicture2" iconNode={iconNode}/>);
export default PictureInPicture2;