Repository URL to install this package:
|
Version:
2.7.6 ▾
|
@skava/ui
/
src
/
components
/
abstractions
/
forms
/
views
/
PaymentWithBillingAddress
/
typings.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
// renderProps
renderForm?: PaymentWithBillingAddressRenderProp
renderBox?: PaymentWithBillingAddressRenderProp
renderWrapper?: PaymentWithBillingAddressRenderProp
}