Код: Выделить всё
const StrikeThrough = styled(StandardText)`
textDecoration: line-through;
`;
textDecorationLine: line-through;
textDecorationStyle: solid;
`;
< /code>
const StrikeThrough = styled(StandardText)`
text-decoration: line-through;
`;
< /code>
EDIT:
To answer my own question, it looks like I had to do it on the Text component and couldn't make a styled component on top of my styled component.
Подробнее здесь: https://stackoverflow.com/questions/655 ... -component
Мобильная версия