@commercelayer/react-components
Version:
The Official Commerce Layer React Components
13 lines (12 loc) • 390 B
TypeScript
import { type JSX } from 'react';
export interface WireTransferConfig {
infoMessage?: {
text?: string | JSX.Element[];
className?: string;
};
}
type Props = WireTransferConfig & JSX.IntrinsicElements['div'] & {
'data-testid'?: string;
};
export declare function WireTransferPayment({ infoMessage, ...p }: Props): JSX.Element;
export default WireTransferPayment;