Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Styled Components | 39,036 | 27,156 | 21,054 | 18 hours ago | 305 | September 02, 2022 | 177 | mit | TypeScript | |
Visual primitives for the component age. Use the best bits of ES6 and CSS to style your apps without stress 💅 | ||||||||||
React Native Web | 20,770 | 3,237 | 1,342 | 5 hours ago | 335 | August 30, 2022 | 80 | mit | JavaScript | |
Cross-platform React UI packages | ||||||||||
Emotion | 16,421 | 6,576 | 5,125 | 7 days ago | 95 | August 30, 2022 | 226 | mit | JavaScript | |
👩🎤 CSS-in-JS library designed for high performance style composition | ||||||||||
Linaria | 10,551 | 59 | 86 | a day ago | 125 | September 08, 2022 | 163 | mit | TypeScript | |
Zero-runtime CSS in JS library | ||||||||||
Frontend Bootcamp | 10,513 | a year ago | 17 | other | ||||||
Frontend Workshop from HTML/CSS/JS to TypeScript/React/Redux | ||||||||||
Styled System | 7,595 | 5 months ago | 234 | mit | JavaScript | |||||
⬢ Style props for rapid UI development | ||||||||||
Stitches | 7,431 | 290 | 7 days ago | 84 | April 25, 2022 | 121 | mit | JavaScript | ||
CSS-in-JS with near-zero runtime, SSR, multi-variant support, and a best-in-class developer experience. | ||||||||||
Styled Jsx | 7,415 | 5,794 | 813 | 3 months ago | 111 | September 05, 2022 | 77 | mit | JavaScript | |
Full CSS support for JSX without compromises | ||||||||||
Twin.macro | 7,120 | 160 | 2 months ago | 68 | September 22, 2022 | 4 | mit | TypeScript | ||
🦹♂️ Twin blends the magic of Tailwind with the flexibility of css-in-js (emotion, styled-components, stitches and goober) at build time. | ||||||||||
Tamagui | 6,404 | 49 | 5 hours ago | 262 | September 27, 2022 | 44 | mit | TypeScript | ||
a better universal ui system |
The main
branch is under development of the upcoming v6 major version of styled-components. For changes targeting v5, please point your PRs at the legacy-v5
branch.
Utilizing tagged template literals (a recent addition to JavaScript) and the power of CSS, styled-components
allow you to write actual CSS code to style your components. It also removes the mapping between components and styles using components as a low-level styling construct could not be easier!
const Button = styled.button`
color: grey;
`;
Alternatively, you may use style objects. This allows for easy porting of CSS from inline styles, while still supporting the more advanced styled-components capabilities like component selectors and media queries.
const Button = styled.button({
color: 'grey',
});
Equivalent to:
const Button = styled.button`
color: grey;
`;
styled-components
is compatible with both React (for web) and React Native meaning it's the perfect choice even for truly universal apps! See the documentation about React Native for more information.
Supported by Front End Center. Thank you for making this possible!
npm install [email protected]^5.0.0 [email protected]^16.8 [email protected]^16.8 [email protected]^16.8
If you use jest-styled-components, make sure you update that too.
See the documentation at styled-components.com/docs for more information about using styled-components
!
Quicklinks to some of the most-visited pages:
import React from 'react';
import styled from 'styled-components';
// Create a <Title> react component that renders an <h1> which is
// centered, palevioletred and sized at 1.5em
const Title = styled.h1`
font-size: 1.5em;
text-align: center;
color: palevioletred;
`;
// Create a <Wrapper> react component that renders a <section> with
// some padding and a papayawhip background
const Wrapper = styled.section`
padding: 4em;
background: papayawhip;
`;
// Use them like any other React component except they're styled!
<Wrapper>
<Title>Hello World, this is my first styled component!</Title>
</Wrapper>
This is what you'll see in your browser:
If you're using tooling that has babel-plugin-macros set up, you can switch to the styled-components/macro
import path instead to gain the effects of the babel plugin without further setup.
import styled from 'styled-components/macro';
// A static className will be generated for Title (important for SSR)
const Title = styled.h1`
font-size: 1.5em;
text-align: center;
color: palevioletred;
`;
If you wish to provide configuration options to the babel plugin similar to how you would in a .babelrc
, see this guide. The config name is "styledComponents"
.
styled-components
A lot of hard work goes into community libraries, projects, and guides. A lot of them make it easier to get started or help you with your next project! There are also a whole lot of interesting apps and sites that people have built using styled-components.
Make sure to head over to awesome-styled-components to see them all! And please contribute and add your own work to the list so others can find it.
If you want to contribute to styled-components
please see our contributing and community guidelines, they'll help you get set up locally and explain the whole process.
Please also note that all repositories under the styled-components
organization follow our Code of Conduct, make sure to review and follow it.
Let everyone know you're using styled-components
[](https://github.com/styled-components/styled-components)
This project exists thanks to all the people who contribute. [Contribute].
Thank you to all our backers! [Become a backer]
Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]
Licensed under the MIT License, Copyright 2016-present Glen Maddern and Maximilian Stoiber.
See LICENSE for more information.
This project builds on a long line of earlier work by clever folks all around the world. We'd like to thank Charlie Somerville, Nik Graf, Sunil Pai, Michael Chan, Andrey Popp, Jed Watson & Andrey Sitnik who contributed ideas, code or inspiration.
Special thanks to @okonet for the fantastic logo.