You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
389 B
11 lines
389 B
import * as React from 'react';
|
|
import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
|
import { Color, Variant } from './types';
|
|
export interface BadgeProps extends BsPrefixProps, React.HTMLAttributes<HTMLElement> {
|
|
bg?: Variant;
|
|
pill?: boolean;
|
|
text?: Color;
|
|
}
|
|
declare const Badge: BsPrefixRefForwardingComponent<'span', BadgeProps>;
|
|
export default Badge;
|