lucide-solid
Version:
A Lucide icon library package for Solid applications.
46 lines (41 loc) • 2.22 kB
JavaScript
/**
* @license lucide-solid v0.536.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: 'M17 3h4v4',
key: '19p9u1'
}], ['path', {
d: 'M18.575 11.082a13 13 0 0 1 1.048 9.027 1.17 1.17 0 0 1-1.914.597L14 17',
key: '12t3w9'
}], ['path', {
d: 'M7 10 3.29 6.29a1.17 1.17 0 0 1 .6-1.91 13 13 0 0 1 9.03 1.05',
key: 'ogng5l'
}], ['path', {
d: 'M7 14a1.7 1.7 0 0 0-1.207.5l-2.646 2.646A.5.5 0 0 0 3.5 18H5a1 1 0 0 1 1 1v1.5a.5.5 0 0 0 .854.354L9.5 18.207A1.7 1.7 0 0 0 10 17v-2a1 1 0 0 0-1-1z',
key: '8v3fy2'
}], ['path', {
d: 'M9.707 14.293 21 3',
key: 'ydm3bn'
}]];
/**
* @component @name BowArrow
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/bow-arrow
* @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 BowArrow = props => createComponent(Icon, mergeProps(props, {
iconNode: iconNode,
name: "bow-arrow"
}));
export { BowArrow as default };
//# sourceMappingURL=bow-arrow.js.map