Repository URL to install this package:
|
Version:
2.7.3 ▾
|
@skava/ui
/
src
/
components
/
abstractions
/
Subscription
/
SubscriptionOrderInformation
/
typings.ts
|
|---|
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
}