lucide-solid
Version:
A Lucide icon library package for Solid applications.
42 lines (37 loc) • 2.23 kB
JavaScript
/**
* @license lucide-solid v0.562.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: 'M16.051 12.616a1 1 0 0 1 1.909.024l.737 1.452a1 1 0 0 0 .737.535l1.634.256a1 1 0 0 1 .588 1.806l-1.172 1.168a1 1 0 0 0-.282.866l.259 1.613a1 1 0 0 1-1.541 1.134l-1.465-.75a1 1 0 0 0-.912 0l-1.465.75a1 1 0 0 1-1.539-1.133l.258-1.613a1 1 0 0 0-.282-.866l-1.156-1.153a1 1 0 0 1 .572-1.822l1.633-.256a1 1 0 0 0 .737-.535z',
key: '1m8t9f'
}], ['path', {
d: 'M8 15H7a4 4 0 0 0-4 4v2',
key: 'l9tmp8'
}], ['circle', {
cx: '10',
cy: '7',
r: '4',
key: 'e45bow'
}]];
/**
* @component @name UserStar
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/user-star
* @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 UserStar = props => createComponent(Icon, mergeProps(props, {
iconNode: iconNode,
name: "user-star"
}));
export { UserStar as default };
//# sourceMappingURL=user-star.js.map