You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

styles.ts 596B

1234567891011121314151617181920
  1. import { ColorPalette } from '../../base/styles/components/styles/ColorPalette';
  2. import { createStyleSheet } from '../../base/styles/functions.any';
  3. import BaseTheme from '../../base/ui/components/BaseTheme.native';
  4. export const AUD_LABEL_COLOR = ColorPalette.green;
  5. /**
  6. * The styles of the React {@code Components} of the feature video-quality.
  7. */
  8. export default createStyleSheet({
  9. /**
  10. * Style for the audio-only indicator.
  11. */
  12. indicatorAudioOnly: {
  13. backgroundColor: AUD_LABEL_COLOR,
  14. borderRadius: BaseTheme.shape.borderRadius,
  15. height: 32
  16. }
  17. });