Repository URL to install this package:
|
Version:
2.8.0-studio-release ▾
|
@skava/ui
/
dist
/
components
/
abstractions
/
forms
/
views
/
PaymentWithBillingAddress
/
typings.d.ts
|
|---|
import { ReactNode } from 'react';
import { CommonState } from 'src/state';
export interface PaymentWithBillingAddressRenderProp extends Function {
(props: PaymentWithBillingAddressProps, state?: CommonState): ReactNode;
}
export interface PaymentWithBillingAddressProps {
className?: string;
children?: ReactNode;
dataQa?: string;
renderForm?: PaymentWithBillingAddressRenderProp;
renderBox?: PaymentWithBillingAddressRenderProp;
renderWrapper?: PaymentWithBillingAddressRenderProp;
}