import * as React from 'react'; import {IDropdownLabel} from '../interfaces'; export class QualityLabel extends React.PureComponent { render() { const value = this.props.selectedItem?.value ? this.props.selectedItem?.label : 'Same'; const {getClass} = this.props; return ( ); } }