D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
grafana
/
public
/
app
/
features
/
variables
/
adhoc
/
picker
/
Filename :
ConditionSegment.tsx
back
Copy
import React from 'react'; interface Props { label: string; } export const ConditionSegment = ({ label }: Props) => { return ( <div className="gf-form"> <span className="gf-form-label query-keyword">{label}</span> </div> ); };