lucide-solid
Version:
A Lucide icon library package for Solid applications
21 lines (20 loc) • 1.31 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'm10 7 5 3-5 3Z', key: '29ljg6' }],
['rect', { width: '20', height: '14', x: '2', y: '3', rx: '2', key: '48i651' }],
['path', { d: 'M12 17v4', key: '1riwvh' }],
['path', { d: 'M8 21h8', key: '1ev6f3' }],
];
/**
* @component @name MonitorPlay
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/monitor-play
* @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 MonitorPlay = (props) => (<Icon {...props} name="MonitorPlay" iconNode={iconNode}/>);
export default MonitorPlay;