UNPKG

@yuntijs/ui

Version:

☁️ Yunti UI - an open-source UI component library for building Cloud Native web apps

8 lines (7 loc) 276 B
import { BadgeProps } from 'antd'; import React from 'react'; export interface StatusProps extends Pick<BadgeProps, 'className' | 'color' | 'status' | 'style' | 'text'> { tooltip?: React.ReactNode; title?: string; } export declare const Status: React.FC<StatusProps>;