lucide-solid
Version:
A Lucide icon library package for Solid applications
40 lines (35 loc) • 1.8 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: 'M18 16.98h-5.99c-1.1 0-1.95.94-2.48 1.9A4 4 0 0 1 2 17c.01-.7.2-1.4.57-2',
key: 'q3hayz'
}], ['path', {
d: 'm6 17 3.13-5.78c.53-.97.1-2.18-.5-3.1a4 4 0 1 1 6.89-4.06',
key: '1go1hn'
}], ['path', {
d: 'm12 6 3.13 5.73C15.66 12.7 16.9 13 18 13a4 4 0 0 1 0 8',
key: 'qlwsc0'
}]];
/**
* @component @name Webhook
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/webhook
* @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 Webhook = props => createComponent(Icon, mergeProps(props, {
iconNode: iconNode,
name: "webhook"
}));
export { Webhook as default };
//# sourceMappingURL=webhook.js.map