UNPKG

@codeworker.br/govbr-tw-react

Version:

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

9 lines (8 loc) 368 B
import type { ComponentPropsWithoutRef } from "react"; export interface FormLabelProps extends ComponentPropsWithoutRef<"div"> { htmlFor?: string; labelClassName?: string; hintClassName?: string; } declare const FormLabel: import("react").ForwardRefExoticComponent<FormLabelProps & import("react").RefAttributes<HTMLDivElement>>; export default FormLabel;