forked from vergnet/application-amicale
17 lines
266 B
JavaScript
17 lines
266 B
JavaScript
|
// @flow
|
||
|
|
||
|
import variable from "./../variables/platform";
|
||
|
|
||
|
export default (variables /*: * */ = variable) => {
|
||
|
const pickerTheme = {
|
||
|
".note": {
|
||
|
color: "#8F8E95"
|
||
|
},
|
||
|
// width: 90,
|
||
|
marginRight: -4,
|
||
|
flexGrow: 1
|
||
|
};
|
||
|
|
||
|
return pickerTheme;
|
||
|
};
|