UNPKG

330 BTypeScriptView Raw
1import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
2import { Variant } from './types';
3export interface BadgeProps extends BsPrefixProps {
4 variant?: Variant;
5 pill?: boolean;
6}
7declare type Badge = BsPrefixRefForwardingComponent<'span', BadgeProps>;
8declare const Badge: Badge;
9export default Badge;