JavaScript in Plain English

New JavaScript and Web Development content every day. Follow to join our 3.5M+ monthly readers.

Follow publication

Member-only story

How I structure styled-components

Chetan Raj
JavaScript in Plain English
3 min readFeb 13, 2021

--

  • Automatic critical CSS — No unnecessary code on your page, only renders the CSS when the components are injected into a page
  • Dynamic styling — It adapts the styling of a component based on the props
  • Supports Global CSS
  • Supports Server Side Rendering (SSR)
  • Automatic vendor prefixes
  • Unique class names, that means no class names bugs

I use styled-system to pair with styled-components. It makes the Component Orient Design lifestyle easy 😊 The style functions API of the styled-system exposes powerful props and with that leverage, it makes the styled-components even more powerful 💪 and we can use those props for styling the components or elements which can also be based on a theme.

While building or developing a component, the question that arises is

How to design & develop the component, so that the component can be re-used?

Easy, I follow Atomic Design Methodology which says — Split the big chunk of UI into small and easily manageable components. This makes the component reusable ♻️

Starting with the Theme 🌈

How I create the styled-elements which can be re-used ♻️

If we extend the created components, we can create a new styled component that inherits the style of the main component and create multiple variants from this. For example

--

--

Published in JavaScript in Plain English

New JavaScript and Web Development content every day. Follow to join our 3.5M+ monthly readers.

Written by Chetan Raj

Follow JavaScript Essentials on Instagram to learn JS through snapshot of code snippets — https://instagram.com/javascriptessentials/

Write a response