mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-11 03:42:29 +00:00
24 lines
460 B
JavaScript
24 lines
460 B
JavaScript
// @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
|
|
}
|
|
});
|