Files
jitsi-meet/react/features/base/react/components/native/indicatorstyles.js
2022-02-14 12:13:18 +02:00

22 lines
404 B
JavaScript

// @flow
import { ColorPalette } from '../../../styles';
export default {
/**
* Base indicator style.
*/
indicator: {
backgroundColor: ColorPalette.transparent,
padding: 2,
color: ColorPalette.white,
fontSize: 16,
textShadowColor: ColorPalette.black,
textShadowOffset: {
height: -1,
width: 0
}
}
};