【发布时间】:2020-06-06 23:05:56
【问题描述】:
更具体地说,我需要在content:" " 上传递道具的帮助
这是我的例子:
&::after {
content: "test";
color: ${props => props.color};
background: ${props => (props.bg ? "green" : "blue")};
}
这是组件:
<StyledBox bg="red" color="green" text="webpack">
<Webpack />
</StyledBox>
如果我在内容中传递此内容不起作用:
${props => props.text}
知道解决方案是什么吗?
【问题讨论】:
标签: reactjs gatsby styled-components