react-native-stories-festo
Version:
Story component for React Native.
36 lines (33 loc) • 711 B
JavaScript
import {StyleSheet} from 'react-native';
import {BaseColors, FontFamily} from "@config/theme";
const useStyle = () => {
return StyleSheet.create({
storyView: {
marginTop: 25,
width: 66,
marginRight: 10,
},
storyAvatarGradient: {
width: 66,
height: 66,
borderRadius: 50,
marginRight: 10,
justifyContent: 'center',
alignItems: 'center'
},
storyAvatarImg: {
width: 59,
height: 59,
borderRadius: 50,
resizeMode: 'cover',
},
storyLabel: {
fontFamily: FontFamily.normal,
fontWeight: '500',
fontSize: 12,
textAlign: 'center',
marginTop: 8
}
});
}
export default useStyle;