我在TypeScript React应用程序中使用styled-components
,并且在其顶部有一个路由器。
是否可以使用样式组件来对Link
中的react-router-dom
元素进行样式设置?
类似这样的事情:
const HeaderLink = styled.Link`
background-color: hotpink;
`
非常感谢,干杯!
答案 0 :(得分:2)
可能的是,只需将Link
作为参数传递给styled
函数:
const StyledLink = styled(Link)`
color: green;
`;