CSS for the <Component> Age

Styling your way with speed, strong typing, and flexibility.

Used by folks at

To create beautiful websites like these

Discover more
Stars on GitHubCurrent versionMonthly downloadsGzipped sizeDiscord

Getting started

Installation

To download styled-components run:

npm install styled-components

That's all you need to do, you are now ready to use it in your app! (yep, no build step needed 👌)

Note

It's recommended (but not required) to also use the styled-components Babel plugin if you can. It offers many benefits like more legible class names, server-side rendering compatibility, smaller bundles, and more.

Your first styled component

Let's say you want to create a simple and reusable <Button /> component that you can use throughout your application. There should be a normal version and a big and primary version for the important buttons. This is what it should look like when rendered: (this is a live example, click on them!)

First, let's import styled-components and create a styled.button:

import styled from 'styled-components'


const Button = styled.button``

This Button variable here is now a React component that you can use like any other React component! This unusual backtick syntax is a new JavaScript feature called a tagged template literal.

You know how you can call functions with parenthesis? (myFunc()) Well, now you can also call functions with backticks! (learn more about tagged template literals)

If you render our lovely component now (just like any other component: <Button />) this is what you get:

It renders a button! That's not a very nice button though 😕 we can do better than this, let's give it a bit of styling and tickle out the hidden beauty within!

const Button = styled.button`
  background: transparent;
  border-radius: 3px;
  border: 2px solid #BF4F74;
  color: #BF4F74;
  margin: 0 1em;
  padding: 0.25em 1em;
`

As you can see, styled-components lets you write actual CSS in your JavaScript. This means you can use all the features of CSS you use and love, including (but by far not limited to) media queries, all pseudo-selectors, nesting, etc.

The last step is that we need to define what a primary button looks like. To do that we also import { css } from styled-components and interpolate a function into our template literal, which gets passed the props of our component:

import styled, { css } from 'styled-components'


const Button = styled.button<{ $primary?: boolean; }>`
  background: transparent;
  border-radius: 3px;
  border: 2px solid #BF4F74;
  color: '#BF4F74';
  margin: 0 1em;
  padding: 0.25em 1em;


  ${props =>
    props.$primary &&
    css`
      background: '#BF4F74';
      color: white;
    `};
`

Here we're saying that when the $primary property is set we want to add some more css to our component, in this case change the background and color.

That's all, we're done! Take a look at our finished component:

Nice 😍 That's a live updating editor too, so play around with it a bit to get a feel for what it's like to work with styled-components! Once you're ready, dive into the documentation to learn about all the cool things styled-components can do for you:

Continue on the next page

Documentation

#BlackLivesMatter ✊🏿 Support the Equal Justice Initiative