20 lines
515 B
JavaScript
20 lines
515 B
JavaScript
import { ColorPalette, createStyleSheet } from '../../base/styles';
|
|
import BaseTheme from '../../base/ui/components/BaseTheme.native';
|
|
|
|
export const AUD_LABEL_COLOR = ColorPalette.green;
|
|
|
|
/**
|
|
* The styles of the React {@code Components} of the feature video-quality.
|
|
*/
|
|
export default createStyleSheet({
|
|
|
|
/**
|
|
* Style for the audio-only indicator.
|
|
*/
|
|
indicatorAudioOnly: {
|
|
backgroundColor: AUD_LABEL_COLOR,
|
|
borderRadius: BaseTheme.shape.borderRadius,
|
|
height: 32
|
|
}
|
|
});
|