// It's imported this way to avoid circular dependencies import { ControlledField } from '@/components/organisms/ControlledField/ControlledField' import { isWeb } from '@/constants' import { Box, Text } from '@/design-system' import { useWeb } from '@/hooks' import { ProfileControlledInputProps } from '@/types' export const ProfileControlledInput = ({ label, name, isDisabled = false, ...rest }: ProfileControlledInputProps) => { const { shouldApplyMobileStyles } = useWeb() return ( {label} ) }