lucide-solid
Version:
A Lucide icon library package for Solid applications
19 lines (18 loc) • 1.14 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'm22 8-6 4 6 4V8Z', key: '50v9me' }],
['rect', { width: '14', height: '12', x: '2', y: '6', rx: '2', ry: '2', key: '1rqjg6' }],
];
/**
* @component @name Video
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/video
* @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 Video = (props) => <Icon {...props} name="Video" iconNode={iconNode}/>;
export default Video;