lucide-solid
Version:
A Lucide icon library package for Solid applications
20 lines (19 loc) • 1.19 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M4.5 3h15', key: 'c7n0jr' }],
['path', { d: 'M6 3v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V3', key: 'm1uhx7' }],
['path', { d: 'M6 14h12', key: '4cwo0f' }],
];
/**
* @component @name Beaker
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/beaker
* @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 Beaker = (props) => <Icon {...props} name="Beaker" iconNode={iconNode}/>;
export default Beaker;