我有以下ui组件:
const StyledLabel = styled.div`
color: ${(props) => props.theme.colors.black};
`;
const Label = ({
text,
marginBottom,
}) => (
<StyledLabel
style={{ marginBottom }}
>
{text}
</StyledLabel>
);
我想要做的是删除样式属性并使样式组件处理margin-bottom ...所以我现在有:
const StyledLabel = styled.div`
color: ${(props) => props.theme.colors.black};
margin-bottom: ${(props) => props.marginBottom};
`;
const Label = ({
text,
marginBottom,
}) => (
<StyledLabel
marginBottom={marginBottom}
>
{text}
</StyledLabel>
);
以上问题是应用于元素的CSS是:
margin-bottom: 8;
不是理想的8px
- 我可以让样式组件以px
的方式神奇地添加style
吗?或者我是否需要将我的应用从marginBottom 8
更改为8px
?
答案 0 :(得分:0)
嘿,为什么你想要将css
规则与你的组件混合,我认为你可以发送不同的className
并在css
中创建file.css
规则会更容易管理。但是,如果您想继续使用代码,则只需添加px
margin-bottom: {${props.marginBottom}px`};
或者您可以创建const
并在之后添加。