【发布时间】:2021-01-03 02:29:05
【问题描述】:
const someStyle = css`
colors : ${({theme}) => theme.colors.primary;
${(props) => props.active ? css`
background-color: ${({theme}) => theme.colors.backgroundColorActive};
`}
`
const SomeButton = styled.div`
${someStyle}
`
我可以使用 css 嵌套在另一个 css 模板文字中的模板文字吗?
【问题讨论】:
标签: css reactjs styled-components emotion