export function CustomSelect()

in src/components/view/SegmentSelect/CustomAsyncSelect.tsx [146:158]


export function CustomSelect(props: CustomSelectProps) {
  return (
    <Select
      backspaceRemovesValue={true}
      isClearable={true}
      classNamePrefix="grafana-custom"
      className={cx('select', styles)}
      value={props.value}
      options={props.options}
      onChange={props.onChange}
    ></Select>
  );
}