@react-beauty/ui-select
Version:
ui-select
6 lines (5 loc) • 310 B
TypeScript
import { LabelHTMLAttributes, ReactNode } from 'react';
export interface SelectLabelProps extends LabelHTMLAttributes<HTMLLabelElement> {
children: ReactNode;
}
export declare const SelectLabel: import('react').ForwardRefExoticComponent<SelectLabelProps & import('react').RefAttributes<HTMLLabelElement>>;