UNPKG

@onesy/ui-react

Version:
13 lines (12 loc) 328 B
import React from 'react'; import { IBaseElement } from '../types'; export declare type IBadge = IBaseElement & { value?: number; max?: number; vertical?: 'top' | 'bottom'; horizontal?: 'left' | 'right'; indicator?: boolean; element?: any; }; declare const Badge: React.FC<IBadge>; export default Badge;