lucide-solid
Version:
A Lucide icon library package for Solid applications
47 lines (42 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: 'M20 7h-9',
key: '3s1dr2'
}], ['path', {
d: 'M14 17H5',
key: 'gfn3mx'
}], ['circle', {
cx: '17',
cy: '17',
r: '3',
key: '18b49y'
}], ['circle', {
cx: '7',
cy: '7',
r: '3',
key: 'dfmy0x'
}]];
/**
* @component @name Settings2
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/settings-2
* @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 Settings2 = props => createComponent(Icon, mergeProps(props, {
iconNode: iconNode,
name: "settings-2"
}));
export { Settings2 as default };
//# sourceMappingURL=settings-2.js.map