lucide-solid
Version:
A Lucide icon library package for Solid applications.
42 lines (36 loc) • 1.65 kB
JavaScript
/**
* @license lucide-solid v0.562.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
;
var web = require('solid-js/web');
var Icon = require('../Icon.js');
const iconNode = [['path', {
d: 'm2 2 20 20',
key: '1ooewy'
}], ['path', {
d: 'M20 14.347V14c0-6-4-12-8-12-1.078 0-2.157.436-3.157 1.19',
key: '13g2jy'
}], ['path', {
d: 'M6.206 6.21C4.871 8.4 4 11.2 4 14a8 8 0 0 0 14.568 4.568',
key: '1581id'
}]];
/**
* @component @name EggOff
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/egg-off
* @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 EggOff = props => web.createComponent(Icon, web.mergeProps(props, {
iconNode: iconNode,
name: "egg-off"
}));
module.exports = EggOff;
//# sourceMappingURL=egg-off.js.map