lucide-solid
Version:
A Lucide icon library package for Solid applications
24 lines (23 loc) • 1.43 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: 'M10 17V7h5', key: 'k7jq18' }],
['path', { d: 'M10 11h4', key: '1i0mka' }],
['path', { d: 'M8 15h5', key: 'vxg57a' }],
];
/**
* @component @name ReceiptSwissFranc
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/receipt-swiss-franc
* @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 ReceiptSwissFranc = (props) => (<Icon {...props} name="ReceiptSwissFranc" iconNode={iconNode}/>);
export default ReceiptSwissFranc;