@ant-design/react-native
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
13 lines (12 loc) • 375 B
TypeScript
import { TextStyle, ViewStyle } from 'react-native';
import { Theme } from '../../style';
export interface CheckboxStyle {
wrapper: ViewStyle;
icon: TextStyle;
iconRight: TextStyle;
agreeItem: ViewStyle;
agreeItemCheckbox: TextStyle;
checkboxItemCheckbox: TextStyle;
}
declare const _default: (theme: Theme) => CheckboxStyle;
export default _default;