1 | import * as React from 'react';
|
2 | import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
3 | import { Color, Variant } from './types';
|
4 | export interface BadgeProps extends BsPrefixProps, React.HTMLAttributes<HTMLElement> {
|
5 | bg?: Variant;
|
6 | pill?: boolean;
|
7 | text?: Color;
|
8 | }
|
9 | declare const Badge: BsPrefixRefForwardingComponent<'span', BadgeProps>;
|
10 | export default Badge;
|