D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
grafana
/
public
/
app
/
plugins
/
datasource
/
cloudwatch
/
components
/
Filename :
Forms.tsx
back
Copy
import React, { InputHTMLAttributes } from 'react'; import { InlineFormLabel } from '@grafana/ui'; export interface Props extends InputHTMLAttributes<HTMLInputElement> { label: string; tooltip?: string; children?: React.ReactNode; } export const QueryField = ({ label, tooltip, children }: Partial<Props>) => ( <> <InlineFormLabel width={8} className="query-keyword" tooltip={tooltip}> {label} </InlineFormLabel> {children} </> ); export const QueryInlineField = ({ ...props }: Props) => { return ( <div className={'gf-form-inline'}> <QueryField {...props} /> <div className="gf-form gf-form--grow"> <div className="gf-form-label gf-form-label--grow" /> </div> </div> ); };