Better Programming

Advice for programmers.

Follow publication

Member-only story

7 Ways to Inherit Styles Using Styled Components

Jennifer Fu
Better Programming
Published in
7 min readJun 27, 2022
npm trends for styled-components
Image by author

styled-components is a popular library to style React applications, with over four million weekly downloads. It adopts the CSS-in-JS approach, which bundles each JavaScript component with all its belonging CSS rules and dependencies. Combined with code splitting, it only loads the least amount of code necessary.

In styled-components, CSS styles are written as custom React components. It is easy to track which components are unused or undefined during compilation. It improves code manageability, comparing class names or other ways. Since it is CSS in JavaScript, it enables dynamic styling with programming capability.

In a previous article, we have introduced what styled-components is and how to use it. We have been using styled-components for a number of years, and often, we create components extending from the existing components. In this article, we are going to explore how to inherit/share styles using styled components.

Set Up Styled Components in Create React App

We use Create React App as a base to explore styled-components. The following command creates a React project:

% npx create-react-app react-styled-components
% cd react-styled-components

Set up styled-components:

npm i styled-components

styled-components becomes part of dependencies in package.json:

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Responses (1)

Write a response