Repository URL to install this package:
|
Version:
2.7.3 ▾
|
@skava/ui
/
dist
/
components
/
abstractions
/
Checkout
/
DeliveryInstruction
/
DeliveryInstruction.d.ts
|
|---|
import React from 'react';
import { defaultRenderToggleButton, defaultRenderExpandedView } from './renderProps';
import { DeliveryInstructionProps } from './typings';
declare class DeliveryInstruction extends React.PureComponent<DeliveryInstructionProps> {
static defaultProps: {
className: string;
renderToggleButton: typeof defaultRenderToggleButton;
renderExpandedView: typeof defaultRenderExpandedView;
};
render(): JSX.Element;
}
export { DeliveryInstruction };
export default DeliveryInstruction;