lucide-solid
Version:
A Lucide icon library package for Solid applications
49 lines (44 loc) • 2.62 kB
JavaScript
/**
* @license lucide-solid v0.487.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
import { createComponent, mergeProps } from 'solid-js/web';
import Icon from '../Icon.js';
const iconNode = [['path', {
d: 'M12 4V2',
key: '1k5q1u'
}], ['path', {
d: 'M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592a7.01 7.01 0 0 0 4.125-2.939',
key: '1xcvy9'
}], ['path', {
d: 'M19 10v3.343',
key: '163tfc'
}], ['path', {
d: 'M12 12c-1.349-.573-1.905-1.005-2.5-2-.546.902-1.048 1.353-2.5 2-1.018-.644-1.46-1.08-2-2-1.028.71-1.69.918-3 1 1.081-1.048 1.757-2.03 2-3 .194-.776.84-1.551 1.79-2.21m11.654 5.997c.887-.457 1.28-.891 1.556-1.787 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4-.74 0-1.461.068-2.15.192',
key: '17914v'
}], ['line', {
x1: '2',
x2: '22',
y1: '2',
y2: '22',
key: 'a6p6uj'
}]];
/**
* @component @name NutOff
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/nut-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 NutOff = props => createComponent(Icon, mergeProps(props, {
iconNode: iconNode,
name: "nut-off"
}));
export { NutOff as default };
//# sourceMappingURL=nut-off.js.map