UNPKG

react-odyssey

Version:
10 lines (9 loc) 366 B
import { ReactNode, ComponentProps } from 'react'; export interface StatusProps extends ComponentProps<'dd'> { label?: ReactNode; isHiddenLabel?: boolean; isSuccess?: boolean; isCaution?: boolean; isDanger?: boolean; } export declare const Status: ({ label, children, isSuccess, isCaution, isDanger, isHiddenLabel }: StatusProps) => JSX.Element;