UNPKG

@pluve/ace

Version:

一套React版本的 Taro UI 组件库

10 lines (9 loc) 254 B
import { FC, PropsWithChildren } from 'react'; interface IBadgeProps { dot?: boolean; value: string | number; maxValue: number; className?: string; } declare const Badge: FC<PropsWithChildren<IBadgeProps>>; export default Badge;