lucide-solid
Version:
A Lucide icon library package for Solid applications
22 lines (21 loc) • 1.35 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M6 3h12', key: 'ggurg9' }],
['path', { d: 'M6 8h12', key: '6g4wlu' }],
['path', { d: 'm6 13 8.5 8', key: 'u1kupk' }],
['path', { d: 'M6 13h3', key: 'wdp6ag' }],
['path', { d: 'M9 13c6.667 0 6.667-10 0-10', key: '1nkvk2' }],
];
/**
* @component @name IndianRupee
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/indian-rupee
* @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 IndianRupee = (props) => (<Icon {...props} name="IndianRupee" iconNode={iconNode}/>);
export default IndianRupee;