diff --git a/src/components/Round.tsx b/src/components/Round.tsx index 0c66384..235a6a5 100644 --- a/src/components/Round.tsx +++ b/src/components/Round.tsx @@ -1,5 +1,6 @@ -import SolvedIcon from '@mui/icons-material/CheckRounded' -import UnsolvedIcon from '@mui/icons-material/CloseRounded' +import SolvedIcon from '@mui/icons-material/CheckBoxRounded' +import UnsolvedIcon from '@mui/icons-material/DisabledByDefaultRounded' +import BlankBoxIcon from '@mui/icons-material/CheckBoxOutlineBlankRounded' import DeleteIcon from '@mui/icons-material/UndoRounded' import Box from '@mui/material/Box' import Button from '@mui/material/Button' @@ -102,29 +103,16 @@ const Round: FC = ({ round, index }) => { }} > {query.verifier} - - - + + + {query.state === 'unknown' && ( + + )} {query.state === 'solved' && ( - + )} {query.state === 'unsolved' && ( - + )}