简体   繁体   中英

How to concatenate jsx in styled components

I'm currently having trouble trying to add some padding to a component. This is the current code (it works fine)

padding: ${props =>
  props.isMobile && props.variant === "a"
    ? Spacing.Large
    : Spacing.Small};

However I want the padding to only be top and bottom and the sided to be 0, so I want to do something like this: (notice the 0's)

padding: ${props =>
  props.isMobile && props.variant === "a"
    ? 0 Spacing.Large
    : 0 Spacing.Small};

But it will give me syntax error, what is the correct way to handle this?

padding takes a string value, so when you do the ternary statement, you need to make sure it's a string.

padding: ${props =>
  props.isMobile && props.variant === "a"
    ? `0 ${Spacing.Large}`
    : `0 ${Spacing.Small}`};

This will make sure the ternary is properly executed.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM