mirror of
https://github.com/grafana/grafana.git
synced 2025-08-03 06:12:20 +08:00
14 lines
249 B
TypeScript
14 lines
249 B
TypeScript
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>
|
|
);
|
|
};
|