mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-05 15:42:18 +00:00
9 lines
330 B
TypeScript
9 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;
|