Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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!

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...