application-amicale/native-base-theme/components/View.js
2020-01-28 20:07:21 +01:00

13 lines
226 B
JavaScript

// @flow
import variable from './../variables/platform';
export default (variables /* : * */ = variable) => {
const viewTheme = {
'.padder': {
padding: variables.contentPadding
}
};
return viewTheme;
};