UNPKG

@react-pakistan/react-ui-collection

Version:

React UI Collection built upon React Storybook

44 lines (43 loc) 889 B
import { ReactText } from 'react'; import { IOrderBodyItem } from '../order-table'; export interface IStepItem { [key: string]: string; } export interface ICheckoutConfirmationProps { /** * Text for H4 component */ headingH4: ReactText; /** * Array of steps */ steps: Array<IStepItem>; /** * Text for Order Summary heading */ orderSummary: string; /** * Array of Order Table body items */ orderBodyItems: Array<IOrderBodyItem>; /** * Text for Delivery heading */ delivery: string; /** * Text for Address */ address: string; /** * Text for Delivery Options */ deliveryOption: string; /** * Text property for Back Button component */ backButton: string; /** * Text property for Next Button component */ nextButton: string; }