autumn-js
Version:
Autumn JS Library
12 lines (9 loc) • 479 B
TypeScript
import * as React from 'react';
declare const buttonVariants: any;
interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
asChild?: boolean;
variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | null;
size?: "default" | "sm" | "lg" | "icon" | null;
}
declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
export { Button, type ButtonProps, buttonVariants };