Files
fltr-app/components/discovery/GenreTag.tsx
DevOFVictory f21f20a4fd search
2025-10-23 17:58:16 +02:00

19 lines
462 B
TypeScript

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',
},
});