lucide-solid
Version:
A Lucide icon library package for Solid applications.
46 lines (41 loc) • 2.39 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: 'm13.5 6.5-3.148-3.148a1.205 1.205 0 0 0-1.704 0L6.352 5.648a1.205 1.205 0 0 0 0 1.704L9.5 10.5',
key: 'dzhfyz'
}], ['path', {
d: 'M16.5 7.5 19 5',
key: '1ltcjm'
}], ['path', {
d: 'm17.5 10.5 3.148 3.148a1.205 1.205 0 0 1 0 1.704l-2.296 2.296a1.205 1.205 0 0 1-1.704 0L13.5 14.5',
key: 'nfoymv'
}], ['path', {
d: 'M9 21a6 6 0 0 0-6-6',
key: '1iajcf'
}], ['path', {
d: 'M9.352 10.648a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l4.296-4.296a1.205 1.205 0 0 0 0-1.704l-2.296-2.296a1.205 1.205 0 0 0-1.704 0z',
key: 'nv9zqy'
}]];
/**
* @component @name Satellite
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/satellite
* @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 Satellite = props => createComponent(Icon, mergeProps(props, {
iconNode: iconNode,
name: "satellite"
}));
export { Satellite as default };
//# sourceMappingURL=satellite.js.map