mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
10 lines
330 B
TypeScript
10 lines
330 B
TypeScript
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;
|