UNPKG

@grafana/ui

Version:
13 lines (12 loc) 452 B
interface InputControlProps { /** Show an icon as a prefix in the input */ prefix?: JSX.Element | string | null; focused: boolean; invalid: boolean; disabled: boolean; innerProps: JSX.IntrinsicElements['div']; } export declare const InputControl: import("react").ForwardRefExoticComponent<InputControlProps & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes<HTMLDivElement>>; export {};