UNPKG

react-bootstrap

Version:

Bootstrap 4 components built with React

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