UNPKG

lightswind

Version:

A collection of beautifully crafted React Components, Blocks & Templates for Modern Developers. Create stunning web applications effortlessly by using our 160+ professional and animated react components.

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 };