UNPKG

@themesberg/react-bootstrap

Version:

Unofficial release of the react-bootstrap library with Bootstrap 5 components built with React

11 lines (10 loc) 350 B
import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers'; import { Color, Variant } from './types'; export interface BadgeProps extends BsPrefixProps { bg?: Variant; pill?: boolean; text?: Color; } declare type Badge = BsPrefixRefForwardingComponent<'span', BadgeProps>; declare const Badge: Badge; export default Badge;