UNPKG

lightswind

Version:

A professionally designed component library & templates market that brings together functionality, accessibility, and beautiful aesthetics for modern applications.

7 lines (6 loc) 262 B
import * as React from "react"; export interface LabelProps extends React.LabelHTMLAttributes<HTMLLabelElement> { htmlFor?: string; } declare const Label: React.ForwardRefExoticComponent<LabelProps & React.RefAttributes<HTMLLabelElement>>; export { Label };