lucide-solid
Version:
A Lucide icon library package for Solid applications
21 lines (20 loc) • 1.26 kB
JSX
import Icon from '../Icon';
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) => <Icon {...props} name="Settings2" iconNode={iconNode}/>;
export default Settings2;