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