Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork2.5k
Visual primitives for the component age. Use the best bits of ES6 and CSS to style your apps without stress 💅
License
styled-components/styled-components
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Upgrading from v5? See themigration guide.
Utilizingtagged template literals (a recent addition to JavaScript) and thepower 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!
constButton=styled.button` color: grey;`;
Alternatively, you may usestyle 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.
constButton=styled.button({color:'grey',});
Equivalent to:
constButton=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 thedocumentation about React Native for more information.
Supported byFront End Center. Thank you for making this possible!
See the documentation atstyled-components.com/docs for more information about usingstyled-components
!
Quicklinks to some of the most-visited pages:
importReactfrom'react';importstyledfrom'styled-components';// Create a <Title> react component that renders an <h1> which is// centered, palevioletred and sized at 1.5emconstTitle=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 backgroundconstWrapper=styled.section` padding: 4em; background: papayawhip;`;functionMyUI(){return(// 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:
Themain
branch is for the most-current version of styled-components, currently v6. For changes targeting v5, please point your PRs at thelegacy-v5
branch.
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 toawesome-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 tostyled-components
please see ourcontributing and community guidelines, they'll help you get set up locally and explain the whole process.
Please also note that all repositories under thestyled-components
organization follow ourCode of Conduct, make sure to review and follow it.
Let everyone know you're usingstyled-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.
SeeLICENSE 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.
About
Visual primitives for the component age. Use the best bits of ES6 and CSS to style your apps without stress 💅
Topics
Resources
License
Code of conduct
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Sponsor this project
Uh oh!
There was an error while loading.Please reload this page.