@fruits-chain/react-native-xiaoshu
Version:
🌈 React Native UI library
23 lines (22 loc) • 624 B
TypeScript
import type { TokensType } from '../theme/interface';
export declare const varCreator: (TOKENS: TokensType) => {
button_bar_padding_horizontal: number;
button_bar_button_space: number;
};
declare type ComponentVars = ReturnType<typeof varCreator>;
export declare const styleCreator: (cv: ComponentVars) => {
button_bar: {
flexDirection: "row";
justifyContent: "flex-end";
alignItems: "center";
};
button_bar_alone: {
flexDirection: "column";
alignItems: "stretch";
justifyContent: "center";
};
btn: {
minWidth: number;
};
};
export {};