Files
jitsi-meet/react/features/base/react/components/native/indicatorStyles.ts
2023-04-24 14:09:50 +03:00

20 lines
425 B
TypeScript

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