diff --git a/src/client/components/Choices/MultiChoice.tsx b/src/client/components/Choices/MultiChoice.tsx index eff0eb73..d02c713e 100644 --- a/src/client/components/Choices/MultiChoice.tsx +++ b/src/client/components/Choices/MultiChoice.tsx @@ -11,6 +11,7 @@ import { } from '@mui/material' import ExpandLess from '@mui/icons-material/ExpandLess' import ExpandMore from '@mui/icons-material/ExpandMore' +import HelpOutlineIcon from '@mui/icons-material/HelpOutline' import { MultipleChoiceType, InputProps } from '../../types' const ShowMore = ({ text }: { text: string }) => { @@ -19,10 +20,11 @@ const ShowMore = ({ text }: { text: string }) => { return ( <> setExpand(!expand)}> + {!expand ? : } - {text} + {text} )