import { cn } from "#/utils/utils"; interface BrandButtonProps { testId?: string; name?: string; variant: "primary" | "secondary" | "danger"; type: React.ButtonHTMLAttributes["type"]; isDisabled?: boolean; className?: string; onClick?: () => void; startContent?: React.ReactNode; } export function BrandButton({ testId, name, children, variant, type, isDisabled, className, onClick, startContent, }: React.PropsWithChildren) { return ( ); }