21 lines
461 B
JavaScript
21 lines
461 B
JavaScript
// @flow
|
|
|
|
import { createStyleSheet } from '../../../base/styles';
|
|
import BaseTheme from '../../../base/ui/components/BaseTheme';
|
|
|
|
/**
|
|
* The styles of the React {@code Components} of the feature recording.
|
|
*/
|
|
export default createStyleSheet({
|
|
|
|
/**
|
|
* Style for the recording indicator.
|
|
*/
|
|
indicatorStyle: {
|
|
marginRight: 4,
|
|
marginLeft: 0,
|
|
marginBottom: 0,
|
|
backgroundColor: BaseTheme.palette.iconError
|
|
}
|
|
});
|