export interface BaseSize {
    sm: unknown;
    md: unknown;
    lg: unknown;
}
export type Size = keyof BaseSize;
