12345678910111213141516 |
- // @flow
-
- import { ColorPalette } from '../../base/styles';
-
- export const ENABLED_THUMB_COLOR = ColorPalette.blueHighlight;
- export const ENABLED_TRACK_COLOR = ColorPalette.blue;
- export const DISABLED_THUMB_COLOR = ColorPalette.darkGrey;
-
- export default {
- roomLockSwitchContainer: {
- alignItems: 'center',
- flexDirection: 'row',
- justifyContent: 'space-between',
- marginTop: 16
- }
- };
|