UNPKG

@payload-auth/better-auth-plugin

Version:

A Payload CMS plugin for Better Auth

11 lines (10 loc) 612 B
import * as React from 'react'; import { type VariantProps } from 'class-variance-authority'; declare const buttonVariants: (props?: ({ variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined; size?: "icon" | "default" | "sm" | "lg" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; declare function Button({ className, variant, size, asChild, ...props }: React.ComponentProps<'button'> & VariantProps<typeof buttonVariants> & { asChild?: boolean; }): React.JSX.Element; export { Button, buttonVariants };