Repository URL to install this package:
|
Version:
0.9.5 ▾
|
ui-component-library
/
dist
/
typings
/
src
/
components
/
abstractions
/
Order
/
OrderStatus
/
renderProps.d.ts
|
|---|
/// <reference types="react" />
import { OrderStatusProps } from './typings';
/**
* render order status details
*/
declare function defaultRenderOrderStatus(props: OrderStatusProps): JSX.Element;
/**
* render toggle button
*/
declare function defaultRenderActionButton(props: OrderStatusProps): JSX.Element;
/**
* local function
*/
declare function defaultRenderStatusSection(props: OrderStatusProps): JSX.Element;
/**
* rendering the wrapper
*/
declare function defaultRenderStatusWrapper(props: OrderStatusProps): JSX.Element;
export { defaultRenderOrderStatus, defaultRenderStatusSection, defaultRenderActionButton, defaultRenderStatusWrapper, };