@fruits-chain/react-native-xiaoshu
Version:
🌈 React Native UI library
34 lines (33 loc) • 968 B
TypeScript
import type { TokensType } from '../theme/interface';
export declare const varCreator: (TOKENS: TokensType) => {
action_sheet_description_color: string;
action_sheet_description_font_size: number;
action_sheet_description_line_height: number;
action_sheet_text_color: string;
action_sheet_text_font_size: number;
action_sheet_cancel_padding_top: number;
action_sheet_cancel_padding_color: string;
};
declare type ComponentVars = ReturnType<typeof varCreator>;
export declare const styleCreator: (cv: ComponentVars) => {
description: {
flexShrink: number;
textAlign: "center";
color: string;
fontSize: number;
lineHeight: number;
paddingBottom: number;
};
description_alone: {
paddingTop: number;
};
button_text: {
fontSize: number;
fontWeight: "bold";
};
gap: {
height: number;
backgroundColor: string;
};
};
export {};