14 lines
221 B
JavaScript
14 lines
221 B
JavaScript
// @flow
|
|
|
|
import variable from "./../variables/platform";
|
|
|
|
export default (variables /*: * */ = variable) => {
|
|
const labelTheme = {
|
|
".focused": {
|
|
width: 0
|
|
},
|
|
fontSize: 17
|
|
};
|
|
|
|
return labelTheme;
|
|
};
|