@ant-design/react-native
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
17 lines • 470 B
JavaScript
import { StyleSheet } from 'react-native';
export default (function (theme) {
return StyleSheet.create({
grayBorderBox: {
borderColor: theme.border_color_base
},
icon: {
width: theme.icon_size_md,
height: theme.icon_size_md
},
text: {
fontSize: theme.font_size_caption_sm,
color: theme.color_text_base,
marginTop: theme.v_spacing_md
}
});
});