import { memo } from 'react'; import type { FC, ReactNode } from 'react'; import resets from '../../_resets.module.css'; import classes from './Bill.module.css'; import { UnionIcon } from './UnionIcon.js'; import { VectorStrokeIcon2 } from './VectorStrokeIcon2.js'; import { VectorStrokeIcon3 } from './VectorStrokeIcon3.js'; import { VectorStrokeIcon } from './VectorStrokeIcon.js'; interface Props { className?: string; swap?: { union?: ReactNode; }; } /* @figmaId 5404:5814 */ export const Bill: FC = memo(function Bill(props = {}) { return (
{props.swap?.union || }
); });