Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui-presets / dist / abstractions / Order / OrderStatus / renderProps.d.ts
Size: Mime:
/// <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, };