You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

styles.js 418B

12345678910111213141516
  1. // @flow
  2. import { ColorPalette } from '../../base/styles';
  3. export const ENABLED_THUMB_COLOR = ColorPalette.blueHighlight;
  4. export const ENABLED_TRACK_COLOR = ColorPalette.blue;
  5. export const DISABLED_THUMB_COLOR = ColorPalette.darkGrey;
  6. export default {
  7. roomLockSwitchContainer: {
  8. alignItems: 'center',
  9. flexDirection: 'row',
  10. justifyContent: 'space-between',
  11. marginTop: 16
  12. }
  13. };