2024-10-25 18:09:59 +08:00

19 lines
436 B
JavaScript

export default function getStyle(data) {
return {
container: {
flexDirection: 'row',
width: data.width,
height: data.height,
justifyContent: 'center',
alignItems: 'center',
},
tips: {
color: '#000000',
width: data.width,
height: 50,
fontSize: 50,
textAlign: 'center',
},
};
}