@fruits-chain/react-native-xiaoshu
Version:
🌈 React Native UI library
28 lines (27 loc) • 793 B
TypeScript
import type { TokensType } from '../theme/interface';
export declare const varCreator: (TOKENS: TokensType) => {
checkbox_icon_size: number;
checkbox_icon_color: string;
checkbox_icon_disabled_color: string;
checkbox_checked_icon_color: string;
checkbox_checked_icon_disabled_color: string;
checkbox_label_color: string;
checkbox_label_margin: number;
checkbox_disabled_label_color: string;
};
declare type ComponentVars = ReturnType<typeof varCreator>;
export declare const styleCreator: (cv: ComponentVars) => {
checkbox: {
flexDirection: "row";
alignItems: "center";
};
label: {
color: string;
lineHeight: number;
minHeight: number;
};
label_disabled: {
color: string;
};
};
export {};