lucide-solid
Version:
A Lucide icon library package for Solid applications.
43 lines (38 loc) • 1.95 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: 'M13.172 2a2 2 0 0 1 1.414.586l6.71 6.71a2.4 2.4 0 0 1 0 3.408l-4.592 4.592a2.4 2.4 0 0 1-3.408 0l-6.71-6.71A2 2 0 0 1 6 9.172V3a1 1 0 0 1 1-1z',
key: '16rjxf'
}], ['path', {
d: 'M2 7v6.172a2 2 0 0 0 .586 1.414l6.71 6.71a2.4 2.4 0 0 0 3.191.193',
key: '178nd4'
}], ['circle', {
cx: '10.5',
cy: '6.5',
r: '.5',
fill: 'currentColor',
key: '12ikhr'
}]];
/**
* @component @name Tags
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/tags
* @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 Tags = props => createComponent(Icon, mergeProps(props, {
iconNode: iconNode,
name: "tags"
}));
export { Tags as default };
//# sourceMappingURL=tags.js.map