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 = [
['rect', { width: '16', height: '20', x: '4', y: '2', rx: '2', key: '1nb95v' }],
['path', { d: 'M12 6h.01', key: '1vi96p' }],
['circle', { cx: '12', cy: '14', r: '4', key: '1jruaj' }],
['path', { d: 'M12 14h.01', key: '1etili' }],
];
/**
* @component @name Speaker
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/speaker
* @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 Speaker = (props) => <Icon {...props} name="Speaker" iconNode={iconNode}/>;
export default Speaker;