import React from 'react' import { StyleProp, StyleSheet, Text, ViewStyle } from 'react-native' import colors from 'src/styles/colors' import { typeScale } from 'src/styles/fonts' interface Props { style?: StyleProp children?: React.ReactNode } export default function FormLabel({ style, children }: Props) { return {children} } const styles = StyleSheet.create({ container: { ...typeScale.labelSemiBoldSmall, color: colors.contentSecondary, }, })