12 lines
221 B
TypeScript
12 lines
221 B
TypeScript
interface Props {
|
|
label: string;
|
|
}
|
|
|
|
export const ConditionSegment = ({ label }: Props) => {
|
|
return (
|
|
<div className="gf-form">
|
|
<span className="gf-form-label query-keyword">{label}</span>
|
|
</div>
|
|
);
|
|
};
|