@ant-design/react-native
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
38 lines (37 loc) • 870 B
TypeScript
import { TextStyle } from 'react-native';
import { Theme } from '../../style';
export interface RadioItemStyle {
radioItemContent: TextStyle;
radioItemContentDisable: TextStyle;
}
declare const _default: (theme: Theme) => {
checkbox_wave: {
borderRadius: number;
};
checkbox: {
borderRadius: number;
};
checkbox_inner: {
width: number;
height: number;
};
checkbox_inner_after: {
width: number;
height: number;
borderRadius: number;
backgroundColor: string;
borderWidth: number;
};
checkbox_inner_after_disabled: {
backgroundColor: string;
};
radioItemContent: {
color: string;
marginRight: number;
marginLeft: number;
};
radioItemContentDisable: {
color: string;
};
};
export default _default;