ConditionSegment.tsx 261 B

12345678910111213
  1. import React, { FC } from 'react';
  2. interface Props {
  3. label: string;
  4. }
  5. export const ConditionSegment: FC<Props> = ({ label }) => {
  6. return (
  7. <div className="gf-form">
  8. <span className="gf-form-label query-keyword">{label}</span>
  9. </div>
  10. );
  11. };