lucide-solid
Version:
A Lucide icon library package for Solid applications
27 lines (26 loc) • 1.46 kB
JSX
import Icon from '../Icon';
const iconNode = [
[
'path',
{
d: 'M19.3 14.8C20.1 16.4 21 17 21 17H3s3-2 3-9c0-3.3 2.7-6 6-6 1 0 1.9.2 2.8.7',
key: 'guizqy',
},
],
['path', { d: 'M10.3 21a1.94 1.94 0 0 0 3.4 0', key: 'qgo35s' }],
['path', { d: 'M15 8h6', key: '8ybuxh' }],
['path', { d: 'M18 5v6', key: 'g5ayrv' }],
];
/**
* @component @name BellPlus
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/bell-plus
* @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 BellPlus = (props) => <Icon {...props} name="BellPlus" iconNode={iconNode}/>;
export default BellPlus;