| 1234567891011121314151617181920212223 |
- // @flow
-
- import { ColorPalette, createStyleSheet } from '../../base/styles';
-
- /**
- * The styles of the React {@code Components} of the feature recording.
- */
- export default createStyleSheet({
-
- /**
- * Style for the recording indicator.
- */
- indicatorLive: {
- backgroundColor: ColorPalette.blue
- },
-
- /**
- * Style for the recording indicator.
- */
- indicatorRecording: {
- backgroundColor: ColorPalette.red
- }
- });
|