UNPKG

@codeworker.br/govbr-tw-react

Version:

Biblioteca de componentes React usando Tailwind CSS que implementa o Padrão Digital de Governo.

8 lines (7 loc) 430 B
import type { ComponentPropsWithoutRef } from "react"; import { VariantProps } from "class-variance-authority"; import buttonVariants from "./variants"; export interface ButtonProps extends ComponentPropsWithoutRef<"button">, VariantProps<typeof buttonVariants> { } declare const Button: import("react").ForwardRefExoticComponent<ButtonProps & import("react").RefAttributes<HTMLButtonElement>>; export { Button, buttonVariants };