Picker.js 188 B

1234567891011121314
  1. // @flow
  2. export default () => {
  3. const pickerTheme = {
  4. '.note': {
  5. color: '#8F8E95'
  6. },
  7. // width: 90,
  8. marginRight: -4,
  9. flexGrow: 1
  10. };
  11. return pickerTheme;
  12. };