lucide-solid
Version:
A Lucide icon library package for Solid applications
45 lines (40 loc) • 1.58 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: 'm14 6 4 4',
key: '1q72g9'
}], ['path', {
d: 'M17 3h4v4',
key: '19p9u1'
}], ['path', {
d: 'm21 3-7.75 7.75',
key: '1cjbfd'
}], ['circle', {
cx: '9',
cy: '15',
r: '6',
key: 'bx5svt'
}]];
/**
* @component @name MarsStroke
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/mars-stroke
* @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 MarsStroke = props => createComponent(Icon, mergeProps(props, {
iconNode: iconNode,
name: "mars-stroke"
}));
export { MarsStroke as default };
//# sourceMappingURL=mars-stroke.js.map