Как изменить CSS метки для Dropdown?Разметка указана ниже:
<Dropdown
placeHolder="Select Department"
label="Department:"
id="Basicdrop1"
ariaLabel="Department"
options={[
{ key: 'A', text: 'Option a' },
{ key: 'B', text: 'Option b' },
{ key: 'C', text: 'Option c'},
{ key: 'D', text: 'Option d' },
{ key: 'E', text: 'Option e' },
]}
onFocus={() =>console.log('onFocus called')}
onBlur={() =>console.log('onBlur called')}
componentRef={this._basicDropdown}
/>
Я хочу сделать ярлык «Отдел» жирным.