lucide-solid
Version:
A Lucide icon library package for Solid applications
24 lines (23 loc) • 1.47 kB
JSX
import Icon from '../Icon';
const iconNode = [
[
'path',
{ d: 'M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z', key: 'q3az6g' },
],
['path', { d: 'M8 7h8', key: 'i86dvs' }],
['path', { d: 'M12 17.5 8 15h1a4 4 0 0 0 0-8', key: 'grpkl4' }],
['path', { d: 'M8 11h8', key: 'vwpz6n' }],
];
/**
* @component @name ReceiptIndianRupee
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/receipt-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 ReceiptIndianRupee = (props) => (<Icon {...props} name="ReceiptIndianRupee" iconNode={iconNode}/>);
export default ReceiptIndianRupee;