replugged

    Type Alias ButtonType

    ButtonType: React.FC<React.PropsWithChildren<ButtonProps>> & {
        Colors: Record<
            | "BRAND"
            | "BRAND_INVERTED"
            | "RED"
            | "GREEN"
            | "PRIMARY"
            | "LINK"
            | "WHITE"
            | "TRANSPARENT"
            | "CUSTOM",
            string,
        >;
        Link: React.FC<React.PropsWithChildren<ButtonLinkProps>>;
        Looks: Record<"FILLED" | "OUTLINED" | "LINK" | "BLANK", string>;
        Sizes: Record<
            "NONE"
            | "TINY"
            | "SMALL"
            | "MEDIUM"
            | "LARGE"
            | "MIN"
            | "MAX"
            | "ICON",
            string,
        >;
    }
    MMNEPVFCICPMFPCPTTAAATR