UNPKG

208 BTypeScriptView Raw
1import { FunctionComponent } from 'react';
2export interface BadgeProps {
3 status: 'positive' | 'negative' | 'neutral' | 'warning' | 'critical';
4}
5export declare const Badge: FunctionComponent<BadgeProps>;