import { OverrideProps, ThemeColor } from '@bifrostui/types'; import React, { ReactNode } from 'react'; export type BadgeProps = OverrideProps<{ props: P & { /** *徽章内容 */ content?: ReactNode; /** * 颜色 */ color?: ThemeColor; /** * 最大值 */ maxCount?: number; /** *徽章类型 */ variant?: 'contained' | 'outlined'; /** * 徽章形状 */ type?: 'dot' | 'standard' | 'bubble'; }; defaultComponent: D; }, D>;