@ant-design/react-native
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
17 lines • 433 B
JavaScript
import { StyleSheet } from 'react-native';
export default (function (theme) {
return StyleSheet.create({
content: {
backgroundColor: theme.fill_base,
borderRadius: theme.radius_sm,
padding: 0,
elevation: 3
},
arrow: {
borderTopColor: 'transparent'
},
background: {
backgroundColor: 'transparent'
}
});
});