lucide-solid
Version:
A Lucide icon library package for Solid applications
19 lines (18 loc) • 1.08 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'm12 14 4-4', key: '9kzdfg' }],
['path', { d: 'M3.34 19a10 10 0 1 1 17.32 0', key: '19p75a' }],
];
/**
* @component @name Gauge
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/gauge
* @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 Gauge = (props) => <Icon {...props} name="Gauge" iconNode={iconNode}/>;
export default Gauge;