lucide-solid
Version:
A Lucide icon library package for Solid applications.
37 lines (32 loc) • 1.76 kB
JavaScript
/**
* @license lucide-solid v0.536.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: 'M17 13.44 4.442 17.082A2 2 0 0 0 4.982 21H19a2 2 0 0 0 .558-3.921l-1.115-.32A2 2 0 0 1 17 14.837V7.66',
key: '13vns8'
}], ['path', {
d: 'm7 10.56 12.558-3.642A2 2 0 0 0 19.018 3H5a2 2 0 0 0-.558 3.921l1.115.32A2 2 0 0 1 7 9.163v7.178',
key: 's8x3u0'
}]];
/**
* @component @name Spool
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/spool
* @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 Spool = props => createComponent(Icon, mergeProps(props, {
iconNode: iconNode,
name: "spool"
}));
export { Spool as default };
//# sourceMappingURL=spool.js.map