reablocks
Version:
Component library for React
22 lines (21 loc) • 509 B
TypeScript
export interface BadgeTheme {
base: string;
disableMargins: string;
badge: string;
position: string;
colors: {
default: string;
primary: string;
secondary: string;
error: string;
[key: string]: string;
};
positions: {
'top-start': string;
'top-end': string;
'bottom-start': string;
'bottom-end': string;
};
}
export declare const badgeTheme: BadgeTheme;
export declare const legacyBadgeTheme: BadgeTheme;