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    
Size: Mime:
import { ReactNode } from 'react';
import { AnimatedCardState } from 'presets/AnimatedExpandableCard';
export interface ApprovalStatusRenderprop extends Function {
    (props: ApprovalStatusProps): ReactNode;
}
export interface ApprovalStatusProps {
    className?: string;
    children?: ReactNode;
    state?: AnimatedCardState;
    renderUserInformation?: ApprovalStatusRenderprop;
    renderOrderInformation?: ApprovalStatusRenderprop;
    renderButton?: ApprovalStatusRenderprop;
    renderWrapper?: ApprovalStatusRenderprop;
}