| 5 | import { useTheme } from './themes'; |
| 6 | |
| 7 | const BlueFormLabel: React.FC<TextProps> = props => { |
| 8 | const { colors } = useTheme(); |
| 9 | const { direction } = useLocale(); |
| 10 | |
| 11 | return <Text {...props} style={[styles.blueFormLabel, { color: colors.foregroundColor, writingDirection: direction }]} />; |
| 12 | }; |
| 13 | |
| 14 | const styles = StyleSheet.create({ |
| 15 | blueFormLabel: { |
nothing calls this directly
no test coverage detected