GitHub
github.com › styled-components
styled-components · GitHub
Visual primitives for the component age. A simple port for Vue of styled-components 💅
GitHub
github.com › styled-components › styled-components
GitHub - styled-components/styled-components: Fast, expressive styling for React. Server components, client components, streaming SSR, React Native—one API.
Fast, expressive styling for React. Server components, client components, streaming SSR, React Native—one API. - styled-components/styled-components
Starred by 41K users
Forked by 2.5K users
Languages TypeScript 91.2% | JavaScript 8.6%
GitHub
github.com › styled-components › styled-components-website
GitHub - styled-components/styled-components-website: The styled-components website and documentation · GitHub
(e.g. pages/docs/basics.js === styled-components.com/docs/basics) ├── sections/ # The content, written in Markdown ├── public/ # Assets ├── test/ # Tests ├── utils/ # Various utilities use across the site └── vendor/ # Cached dependencies
Starred by 621 users
Forked by 433 users
Languages TypeScript 59.0% | MDX 40.6%
GitHub
github.com › the-road-to-learn-react › react-styled-components-example
GitHub - the-road-to-learn-react/react-styled-components-example: React Styled Components Example
Starred by 34 users
Forked by 5 users
Languages JavaScript 79.2% | HTML 20.0% | CSS 0.8% | JavaScript 79.2% | HTML 20.0% | CSS 0.8%
GitHub
github.com › styled-components › styled-components.github.io
GitHub - styled-components/styled-components.github.io: The styled-components homepage · GitHub
Now you are ready to use the imported React Bootstrap components within your component hierarchy defined in the render method. Here is an example App.js redone using React Bootstrap.
Starred by 23 users
Forked by 8 users
Languages JavaScript 57.1% | HTML 42.9%
GitHub
github.com › styled-components › awesome-styled-components
GitHub - styled-components/awesome-styled-components: A curated list of awesome styled-components resources 💅
styled-components-test-utils - Utils for styled-components compatible with jest, expect, chai and jasmine · ReactQL - Universal React + GraphQL starter kit written in Typescript w/ React 16, Apollo 2, SSR, hot-code reload, Brotli compression, strongly typed themes and support for SASS/LESS/PostCSS. RAN! - Production-ready boilerplate with support for GraphQL, SSR, Hot-reload, and caching. Razzle Material UI Styled Example - Razzle Material UI example using Express with compression.
Starred by 3.4K users
Forked by 274 users
styled-components
styled-components.com
styled-components
const Button = styled.a<{ $primary?: boolean; }>` --accent-color: white; /* This renders the buttons above... Edit me! */ background: transparent; border-radius: 3px; border: 1px solid var(--accent-color); color: var(--accent-color); display: inline-block; margin: 0.5rem 1rem; padding: 0.5rem 0; transition: all 200ms ease-in-out; width: 11rem; &:hover { filter: brightness(0.85); } &:active { filter: brightness(1); } /* The GitHub button is a primary button * edit this to target it specifically!
GitHub
github.com › benawad › styled-components-example
GitHub - benawad/styled-components-example
Starred by 11 users
Forked by 12 users
Languages JavaScript 75.4% | HTML 19.6% | CSS 5.0% | JavaScript 75.4% | HTML 19.6% | CSS 5.0%
GitHub
github.com › oktadev › okta-react-styled-components-example
GitHub - oktadev/okta-react-styled-components-example: React Styled Components Example
git clone https://github.com/oktadeveloper/okta-react-styled-components-example.git cd okta-react-styled-components-example npm install
Author oktadev
GitHub
github.com › styled-components › comparison › tree › master › examples › styled-components
comparison/examples/styled-components at master · styled-components/comparison
// app.js import styled from 'styled-components'; const Container = styled.div` margin: 0 auto; width: 100%; @media screen and (min-width: 360px) { max-width: 400px; } @media screen and (min-width: 600px) { max-width: 600px; } `; const App = ...
Author styled-components
GitHub
github.com › ivanchoo › demo-styled-component
GitHub - ivanchoo/demo-styled-component: A simple shopping cart application build with React ⚛ + MobX ♏ + Styled Component 💅 .
January 1, 2023 - To view the project in the browser, ... 3000, example http://[docker-machine-ip]:3000/. ... The challenge expects a simple shopping cart application base on a set of UI wireframes and mock data to be build using React.
Author ivanchoo
GitHub
github.com › topics › styled-component
styled-component · GitHub Topics · GitHub
Repositório de componentes React baseado no design system da Nave. react design-system styled-system styled-component saturn-system
GitHub
github.com › soiluong › react-styled-components
GitHub - soiluong/react-styled-components: A very highly opinionated guide to using React and Styled Components
July 22, 2018 - In the above example you can see how I've used one styled-component input element and have my three differently typed and semantically named fields, which all share the same style. And, because we're a good developer, we make sure we pass in the necessary attributes to render our input field so we're conforming to the HTML 5 semantic standards.
Starred by 15 users
Forked by 4 users
GitHub
github.com › styled-components › styled-theming
GitHub - styled-components/styled-theming: Create themes for your app using styled-components
import React from 'react'; import styled, {ThemeProvider} from 'styled-components'; import theme from 'styled-theming'; const boxBackgroundColor = theme('mode', { light: '#fff', dark: '#000', }); const Box = styled.div` background-color: ${boxBackgroundColor}; `; export default function App() { return ( <ThemeProvider theme={{ mode: 'light' }}> <Box> Hello World </Box> </ThemeProvider> ); }
Starred by 1.2K users
Forked by 25 users
Languages JavaScript 97.6% | HTML 2.4% | JavaScript 97.6% | HTML 2.4%
GitHub
github.com › patrick91 › Styled-Components-Typescript-Example
GitHub - patrick91/Styled-Components-Typescript-Example: Sample "app" using typescript and styled components.
January 26, 2020 - Sample "app" using typescript and styled components. - patrick91/Styled-Components-Typescript-Example
Starred by 104 users
Forked by 27 users
Languages TypeScript 92.4% | HTML 7.6% | TypeScript 92.4% | HTML 7.6%
CodeSandbox
codesandbox.io › examples › package › styled-components
styled-components examples - CodeSandbox
Find more examples or templates · AboutCSS for the <Component> Age. Style components your way with speed, strong typing, and flexibility.7,305,697Weekly Downloads · Latest version6.1.19 · LicenseMIT · External Links · styled-components.com · github.com/styled-components/styled-components ·
GitHub
github.com › styled-components › xstyled
GitHub - styled-components/xstyled: A utility-first CSS-in-JS framework built for React. 💅👩🎤⚡️
import { x } from '@xstyled/styled-components' function Example() { return ( <x.div p={{ _: 3, md: 6 }} bg="white" display="flex" spaceX={4}> <x.div flexShrink={0}> <x.img h={12} w={12} src="/img/logo.svg" alt="xstyled Logo" /> </x.div> <x.div> <x.h4 fontSize={{ _: 'md', lg: 'xl' }} fontWeight="medium" color="black" > xstyled </x.h4> <x.p color="gray-500">A CSS-in-JS framework built for React.</x.p> </x.div> </x.div> ) }
Starred by 2.3K users
Forked by 105 users
Languages MDX 63.7% | TypeScript 31.6% | JavaScript 4.7%
GitHub
github.com › topics › styled-components
styled-components · GitHub Topics · GitHub
react redux boilerplate isomorphic react-router styled-components redux-saga jest universal css-in-js storybook atomic-design starter-kit ... A Modern React Admin Template. It is based on React 19, Vite and TypeScript. It's fast ! react admin styled-components admin-dashboard ts antd admin-template ant-design react-admin react-markdown tailwindcss react-admin-template react-admin-dashboard vite react-admin-kit framer-motion zustand react-router-v6 shadcn-ui