import { ComponentProps, FC } from 'react'; import { Colors, DeepPartial, MainSizes, RoundedSizes } from '../../types/types'; import { BadgeTheme } from './theme'; export interface BadgeProps extends Omit, "color"> { color?: Colors; href?: string; rounded?: RoundedSizes; icon?: FC>; size?: MainSizes; theme?: DeepPartial; } /** * @name Badge * @abstract A component for displaying small texts or number as information in other components (Buttons, Avatars...) */ export declare const Badge: FC; //# sourceMappingURL=Badge.d.ts.map