export interface TextProps {
    children: HTMLElement | string;
    scale?: 's' | 'm' | 'l' | 'xl';
    weight?: 'light' | 'normal' | 'bold';
}
