import * as React from 'react'; import { InlineFieldRow, InlineField } from '@grafana/ui'; interface Props { label: string; tooltip?: string; children: React.ReactElement; } const SearchField = ({ label, tooltip, children }: Props) => { return ( {children} ); }; export default SearchField;