I set the color to white and ff9800 like below.
And am getting this error message.
Failed prop type: Invalid prop `color` of value `#ff9800` supplied to `ForwardRef(Link)`, expected one of ["initial","inherit","primary","secondary","textPrimary","textSecondary","error"].
How can I get rid of this?
<Typography variant='body2' color='white' align='center'>
{'Copyright '}
<Link color='#ff9800' target='_blank' href=''></Link>
{' '}
{new Date().getFullYear()}
{'.'}
</Typography>