mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
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.
25 lines
467 B
25 lines
467 B
// @flow
|
|
|
|
export default () => {
|
|
const fabTheme = {
|
|
'NativeBase.Button': {
|
|
alignItems: 'center',
|
|
padding: null,
|
|
justifyContent: 'center',
|
|
'NativeBase.Icon': {
|
|
alignSelf: 'center',
|
|
fontSize: 20,
|
|
marginLeft: 0,
|
|
marginRight: 0,
|
|
},
|
|
'NativeBase.IconNB': {
|
|
alignSelf: 'center',
|
|
fontSize: 20,
|
|
marginLeft: 0,
|
|
marginRight: 0,
|
|
},
|
|
},
|
|
};
|
|
|
|
return fabTheme;
|
|
};
|
|
|