@fruits-chain/react-native-xiaoshu
Version:
🌈 React Native UI library
21 lines (20 loc) • 544 B
JavaScript
import { StyleSheet } from 'react-native';
import { varCreator as varCreatorCell } from "../cell/style.js";
import Theme from "../theme/index.js";
export const varCreator = () => {
return {};
};
export const styleCreator = (cv, TOKENS) => {
const CV_CELL = Theme.createVar(TOKENS, varCreatorCell);
return StyleSheet.create({
text: {
justifyContent: 'center'
},
text_text: {
fontSize: CV_CELL.cell_font_size,
color: CV_CELL.cell_value_text_color
}
});
};
//# sourceMappingURL=style.js.map
;