import { Combobox } from 'features/Combobox' import { Input } from 'features/Common' import { T9n } from 'features/T9n' import { Icon } from 'features/Icon' import { isMobileDevice } from 'config/userAgent' import { useHighlightsForm, } from './hooks' import { ScWrapper, ScTitle, ScText, ScInputGroup, ScForm, ScInfoBlock, ScInfoWrap, } from './styled' import { PriceInfoType, PriceInfo } from '../PriceInfo' const labelWidth = 100 const wrapperHeight = 50 export const FormHighlights = ({ price }: PriceInfoType) => { const { formRef, formState: { duration, playerValue, selectedPlayer, selectedSound, selectedTeam, sport, stats, teamValue, }, isFetchingTeams, onChangeMaxDuration, onChangePlayer, onChangeTeam, onPlayerSelect, onSoundSelect, onSportSelect, onStatsSelect, onTeamSelect, players, sounds, sports, summaryStats, teams, } = useHighlightsForm() return ( {isMobileDevice ? : null}
} className='FormHighlights__input__sound' />
) }