@fruits-chain/react-native-xiaoshu
Version:
🌈 React Native UI library
16 lines • 472 B
JavaScript
import { StyleSheet } from 'react-native';
import { varCreator as varCreatorCell } from '../cell/style';
import Theme from '../theme';
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.text.js.map