Repository URL to install this package:
|
Version:
0.14.1 ▾
|
ui-component-library
/
src
/
components
/
abstractions
/
Checkout
/
DeliveryInstruction
/
typings.ts
|
|---|
import { ReactNode } from 'react'
export interface DeliveryInstructionRenderProp {
(props: DeliveryInstructionProps): ReactNode
}
export interface DeliveryInstructionProps {
className?: string
renderToggleButton?: DeliveryInstructionRenderProp
renderExpandedView?: DeliveryInstructionRenderProp
}