RateLine.js
498 Bytes
import React from 'react';
import { Surface, Text } from 'react-native-paper';
import { StyleSheet } from 'react-native';
export default RateLine = () => (
<Surface style={styles.surface}>
<Text>Surface</Text>
</Surface>
);
const styles = StyleSheet.create({
surface: {
padding: 8,
flex: 0.4,
width: '95%',
alignItems: 'center',
justifyContent: 'center',
elevation: 2,
marginTop: 10,
marginBottom: 10,
},
});