UNPKG

@sandlada/mdc

Version:

@sandlada/mdc is an open source component library that follows the Material Design 3 design specifications.

10 lines 267 B
export type BadgeSize = 'large' | 'small'; export declare const BadgeSize: { readonly Large: 'large'; readonly Small: 'small'; }; export interface IBadge { size: BadgeSize; value: string | number | null; } //# sourceMappingURL=badge.interface.d.ts.map