lucide-solid
Version:
A Lucide icon library package for Solid applications
39 lines (34 loc) • 1.56 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: 'M20.5 10a2.5 2.5 0 0 1-2.4-3H18a2.95 2.95 0 0 1-2.6-4.4 10 10 0 1 0 6.3 7.1c-.3.2-.8.3-1.2.3',
key: '19sr3x'
}], ['circle', {
cx: '12',
cy: '12',
r: '3',
key: '1v7zrd'
}]];
/**
* @component @name Donut
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/donut
* @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 Donut = props => createComponent(Icon, mergeProps(props, {
iconNode: iconNode,
name: "donut"
}));
export { Donut as default };
//# sourceMappingURL=donut.js.map