import { memo, useState, } from 'react' import { useTranslation } from 'react-i18next' import { ChevronDown } from '@/app/components/base/icons/src/vender/line/arrows' const UserInput = () => { const { t } = useTranslation() const [expanded, setExpanded] = useState(true) return (