@fruits-chain/react-native-xiaoshu
Version:
React Native UI library
68 lines (67 loc) • 1.53 kB
TypeScript
import type { ThemeVarType } from '../theme';
export declare const createStyles: (themeVar: ThemeVarType) => {
cell: {
backgroundColor: string;
};
cell_inner: {
position: "relative";
marginHorizontal: number;
paddingVertical: number;
borderStyle: "solid";
borderBottomColor: string;
borderBottomWidth: number;
};
cell_inner_row: {
flexDirection: "row";
};
cell_inner_border: {
borderBottomWidth: number;
};
title: {
position: "relative";
flexDirection: "row";
marginRight: number;
};
title_required: {
position: "absolute";
left: number;
height: number;
width: number;
alignItems: "center";
justifyContent: "center";
};
title_required_text: {
fontSize: number;
color: string;
};
title_icon: {
marginRight: number;
color: string;
fontSize: number;
lineHeight: number;
};
title_text: {
minHeight: number;
color: string;
fontSize: number;
lineHeight: number;
paddingVertical: number;
};
value: {
flex: number;
};
value_text: {
color: string;
fontSize: number;
lineHeight: number;
paddingVertical: number;
};
icon_link: {
alignSelf: "center";
marginLeft: number;
};
content: {
flexDirection: "row";
alignItems: "center";
};
};