Remove color prop:
<a href='#' className='addTableButton'>
<PlusSquare className='hover' size={32} weight="fill" />
</a>
Use CSS to set its style like:
.addTableButton .hover { color: red }
.addTableButton:hover .hover { color: blue }
That should do the trick.