11 lines
532 B
TypeScript
11 lines
532 B
TypeScript
import InternalBadge from './Badge';
|
|
import Ribbon from './Ribbon';
|
|
export type { BadgeClassNamesType, BadgeProps, BadgeSemanticClassNames, BadgeSemanticName, BadgeSemanticStyles, BadgeStylesType, } from './Badge';
|
|
export type { RibbonProps, RibbonSemanticClassNames, RibbonSemanticName, RibbonSemanticStyles, } from './Ribbon';
|
|
export type { ScrollNumberProps } from './ScrollNumber';
|
|
type CompoundedComponent = typeof InternalBadge & {
|
|
Ribbon: typeof Ribbon;
|
|
};
|
|
declare const Badge: CompoundedComponent;
|
|
export default Badge;
|