lucide-solid
Version:
A Lucide icon library package for Solid applications
39 lines (34 loc) • 1.63 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: 'm15.477 12.89 1.515 8.526a.5.5 0 0 1-.81.47l-3.58-2.687a1 1 0 0 0-1.197 0l-3.586 2.686a.5.5 0 0 1-.81-.469l1.514-8.526',
key: '1yiouv'
}], ['circle', {
cx: '12',
cy: '8',
r: '6',
key: '1vp47v'
}]];
/**
* @component @name Award
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/award
* @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 Award = props => createComponent(Icon, mergeProps(props, {
iconNode: iconNode,
name: "award"
}));
export { Award as default };
//# sourceMappingURL=award.js.map