Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ilxanlar/styled-up
A React UI Toolkit built on top of Styled Components!
https://github.com/ilxanlar/styled-up
react styled-components
Last synced: about 2 months ago
JSON representation
A React UI Toolkit built on top of Styled Components!
- Host: GitHub
- URL: https://github.com/ilxanlar/styled-up
- Owner: ilxanlar
- Created: 2018-10-10T14:19:28.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-13T04:52:49.000Z (about 6 years ago)
- Last Synced: 2024-04-12T07:04:46.782Z (9 months ago)
- Topics: react, styled-components
- Language: JavaScript
- Size: 87.9 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Styled Up
## Usage
Install it:
```bash
yarn add styled-up
```After installation, you need to wrap you app in `StyledUp` component:
```jsx
import { StyledUp } from 'styled-up';
...
```
## RTL
Easy! Just pass `isRTL={true}` to the main wrapper `StyledUp`:
```jsx
```
## Customizing
```javascript
import { StyledUp, variables } from 'styled-up';// Set new values
variables.color.primary = '...';
variables.color.secondary = '...';
variables.color.tertiary = '...';
variables.font.primary = '...';
...// Render your app like normal
```
## Components
Coming soon...