@grafana/ui
Version:
Grafana Components Library
14 lines (13 loc) • 379 B
TypeScript
import { FunctionComponent, ReactNode } from 'react';
import { PopperContent } from '../Tooltip/PopperController';
interface Props {
children: ReactNode;
className?: string;
htmlFor?: string;
isFocused?: boolean;
isInvalid?: boolean;
tooltip?: PopperContent<any>;
width?: number;
}
export declare const FormLabel: FunctionComponent<Props>;
export {};