Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | 1x | /**
* @fileoverview Category separator component
* @module CategorySeparator
* @description Component that renders a category separator, it is the text of the category.
* @requires react react-native
*/
import React from 'react'
import { StyleSheet, Text } from 'react-native'
import colors from '@global/colors'
interface Props {
text: string
}
/**
* @function CategorySeparator
* @description Component that renders a category separator.
* @param text Title of the category
* @returns {React.JSX.Element}
*/
export default function CategorySeparator({ text }: Props): React.JSX.Element {
return <Text style={styles.text}>{text}</Text>
}
const styles = StyleSheet.create({
text: {
fontSize: 20,
fontFamily: 'Poppins',
fontWeight: '700',
color: colors.darkGrey,
overflow: 'hidden',
textDecorationColor: colors.accent,
textDecorationLine: 'underline',
textDecorationStyle: 'double',
marginBottom: 14,
},
})
|