I have this code:
return (
<Container>
<Title color={status}>Some Title</Title>
<Subtitle>
<Icon color={status} width={`${(value / goal) * 100}%`} />
</Subtitle>
</Container>
)
Do you think it would be a better practice to put the styles logics in the styled component file?