lucide-solid
Version:
A Lucide icon library package for Solid applications
23 lines (22 loc) • 1.37 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: 'M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8', key: '1h4pet' }],
['path', { d: 'M12 17.5v-11', key: '1jc1ny' }],
];
/**
* @component @name Receipt
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/receipt
* @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 Receipt = (props) => <Icon {...props} name="Receipt" iconNode={iconNode}/>;
export default Receipt;