export interface TButton {
    text?: string;
    id?: string;
    disabled?: boolean;
    fullWidth?: boolean;
    loading?: boolean;
}
