botframework-webchat-component
Version:
React component of botframework-webchat
14 lines (13 loc) • 402 B
JavaScript
export default function createMicrophoneButtonStyle({ microphoneButtonColorOnDictate }) {
return {
'&.webchat__microphone-button': {
'&.webchat__microphone-button--dictating .webchat__microphone-button__button': {
'&, &:focus, &:hover': {
'& .webchat__microphone-button__icon': {
fill: microphoneButtonColorOnDictate
}
}
}
}
};
}