【发布时间】:2022-01-10 05:34:16
【问题描述】:
import styled from '@emotion/styled';
type ColorProps = {
Coloured: boolean,
}
const BoxStyled = styled.div`
${(props:ColorProps) =>
props.Coloured ? {
background: "#304f8f",
border: "1.85px solid #304f8f",
color: "white",
width: "4rem",
height: "2.5rem",
padding:"0 11px"
} :
{
border: "1.98px solid #2c8090",
width: "4rem",
height: "2.5rem",
padding:"0 11px"
}
}`
在 BoxStyled 中我不想写 width:"4rem", height:"2.5rem", padding:"0 11px" 两次我该如何实现?
【问题讨论】:
标签: css reactjs properties styled-components emotion