tripnomics_7.5.5/public/app/features/variables/adhoc/picker/OperatorSegment.tsx
venbatechnologies@gmail.com 91fce5c4bf Initial commit
2021-07-05 13:49:40 +05:30

18 lines
520 B
TypeScript

import React, { FC } from 'react';
import { Segment } from '@grafana/ui';
import { SelectableValue } from '@grafana/data';
interface Props {
value: string;
onChange: (item: SelectableValue<string>) => void;
}
const options = ['=', '!=', '<', '>', '=~', '!~'].map<SelectableValue<string>>((value) => ({
label: value,
value,
}));
export const OperatorSegment: FC<Props> = ({ value, onChange }) => {
return <Segment className="query-segment-operator" value={value} options={options} onChange={onChange} />;
};