videosphere
    Preparing search index...

    Interface ButtonProps

    interface ButtonProps {
        variant?:
            | "link"
            | "default"
            | "secondary"
            | "destructive"
            | "outline"
            | "ghost";
        size?: "icon"
        | "default"
        | "sm"
        | "lg";
        asChild?: boolean;
    }

    Hierarchy

    • ButtonHTMLAttributes<HTMLButtonElement>
    • VariantProps<typeof buttonVariants>
      • ButtonProps
    Index

    Properties

    variant?: "link" | "default" | "secondary" | "destructive" | "outline" | "ghost" = ...
    size?: "icon" | "default" | "sm" | "lg" = ...
    asChild?: boolean