import React, { FC } from 'react' import { useTheme } from '../../hooks' const FieldLabel: FC = ({ children }) => { const theme = useTheme() return ( ) } export default FieldLabel