export type ButtonVariantTypes = "contained" | "outlined" | "soft" | "transparent" | "link";
export type ButtonColorTypes = "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "light" | "dark";
export type ButtonSizeTypes = "sm" | "md" | "lg";
export type TabSizeTypes = "sm" | "md" | "lg" | "xl";
export type ButtonRoundedTypes = "none" | "full" | "sm" | "md" | "lg";
