lucide-solid
Version:
A Lucide icon library package for Solid applications
23 lines (22 loc) • 1.35 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: 'M12 6.5v11', key: 'ecfhkf' }],
['path', { d: 'M15 9.4a4 4 0 1 0 0 5.2', key: '1makmb' }],
];
/**
* @component @name ReceiptCent
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/receipt-cent
* @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 ReceiptCent = (props) => (<Icon {...props} name="ReceiptCent" iconNode={iconNode}/>);
export default ReceiptCent;