Skip to content

Help migrating from styled-components #985

Closed Answered by segunadebayo
altano asked this question in Q&A
Discussion options

You must be logged in to vote

Hey @altano,

We currently support this syntax.

const Sentence = styled("p", { base: { marginBottom: "1rem"  } })

You can also consider using the template literal syntax mode, which allows you to do this.

const Sentence = styled.p`
  margin-bottom: 1rem;
`;

Replies: 1 comment 3 replies

Comment options

You must be logged in to vote
3 replies
@altano
Comment options

@altano
Comment options

@altano
Comment options

Answer selected by altano
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants