Repository URL to install this package:
|
Version:
2.1.6 ▾
|
import { ReactNode } from 'react'
export interface SubscriptionOrderInformationRenderProp extends Function {
(props: SubscriptionOrderInformationProps): ReactNode
}
export interface SubscriptionOrderInformationProps {
className?: string
children?: ReactNode
// renderProps
renderDeliveryInformation?: SubscriptionOrderInformationRenderProp
renderOrderInformation?: SubscriptionOrderInformationRenderProp
renderBox?: SubscriptionOrderInformationRenderProp
renderWrapper?: SubscriptionOrderInformationRenderProp
}