UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

12 lines (11 loc) 681 B
import * as React from "react"; import { type VariantProps } from "class-variance-authority"; declare const buttonVariants: (props?: ({ variant?: "link" | "outline" | "default" | "destructive" | "secondary" | "ghost" | null | undefined; size?: "icon" | "sm" | "lg" | "default" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> { asChild?: boolean; } declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>; export { Button, buttonVariants };