UNPKG

@lifespikes/ui

Version:
7 lines (6 loc) 225 B
import { FC, PropsWithChildren } from 'react'; export type TableStatusType = 'success' | 'warning' | 'error'; export declare const TableStatus: FC<PropsWithChildren & { value: TableStatusType; className?: string; }>;