This commit is contained in:
DevOFVictory
2025-10-23 17:58:16 +02:00
parent 52f2e241a7
commit f21f20a4fd
9 changed files with 566 additions and 108 deletions

View File

@@ -0,0 +1,19 @@
import { StyleSheet, Text, TextProps } from 'react-native';
export default function GenreTag(props: TextProps) {
return <Text {...props} style={[props.style, styles.genreTag]} />;
}
const styles = StyleSheet.create({
genreTag: {
fontFamily: 'SpaceMono',
fontSize: 12,
paddingVertical: 4,
paddingHorizontal: 8,
borderRadius: 12,
backgroundColor: '#333747',
color: '#fff',
textAlign: 'center',
overflow: 'hidden',
},
});