mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
27 lines
840 B
TypeScript
27 lines
840 B
TypeScript
import React from 'react';
|
|
import { components } from 'react-select';
|
|
import { OptionProps } from 'react-select/lib/components/Option';
|
|
|
|
// https://github.com/JedWatson/react-select/issues/3038
|
|
interface ExtendedOptionProps extends OptionProps<any> {
|
|
data: any;
|
|
}
|
|
|
|
export const Option = (props: ExtendedOptionProps) => {
|
|
const { children, isSelected, data } = props;
|
|
|
|
return (
|
|
<components.Option {...props}>
|
|
<div className="gf-form-select-box__desc-option">
|
|
<div className="gf-form-select-box__desc-option__body">
|
|
<div>{children}</div>
|
|
{data.description && <div className="gf-form-select-box__desc-option__desc">{data.description}</div>}
|
|
</div>
|
|
{isSelected && <i className="fa fa-check" aria-hidden="true" />}
|
|
</div>
|
|
</components.Option>
|
|
);
|
|
};
|
|
|
|
export default Option;
|