lucide-solid
Version:
A Lucide icon library package for Solid applications
42 lines (36 loc) • 1.8 kB
JavaScript
/**
* @license lucide-solid v0.488.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: 'M18.715 13.186C18.29 11.858 17.384 10.607 16 9.5c-2-1.6-3.5-4-4-6.5a10.7 10.7 0 0 1-.884 2.586',
key: '8suz2t'
}], ['path', {
d: 'm2 2 20 20',
key: '1ooewy'
}], ['path', {
d: 'M8.795 8.797A11 11 0 0 1 8 9.5C6 11.1 5 13 5 15a7 7 0 0 0 13.222 3.208',
key: '19dw9m'
}]];
/**
* @component @name DropletOff
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/droplet-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 DropletOff = props => web.createComponent(Icon, web.mergeProps(props, {
iconNode: iconNode,
name: "droplet-off"
}));
module.exports = DropletOff;
//# sourceMappingURL=droplet-off.js.map