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 = [
['rect', { width: '4', height: '16', x: '6', y: '4', key: 'iffhe4' }],
['rect', { width: '4', height: '16', x: '14', y: '4', key: 'sjin7j' }],
];
/**
* @component @name Pause
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/pause
* @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 Pause = (props) => <Icon {...props} name="Pause" iconNode={iconNode}/>;
export default Pause;