UNPKG

@grafana/ui

Version:

Grafana Components Library

14 lines (13 loc) 301 B
import { PureComponent } from 'react'; interface Props { onChange: (item: any) => void; defaultValue?: string; width?: number; } export declare class UnitPicker extends PureComponent<Props> { static defaultProps: { width: number; }; render(): JSX.Element; } export {};