Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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. });