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

https://github.com/etchteam/mobius

WRAP's design system
https://github.com/etchteam/mobius

wrap

Last synced: 8 months ago
JSON representation

WRAP's design system

Awesome Lists containing this project

README

          


Mobius design system




# Storybook docs

[Live demo](https://mobius.wrap.ngo)

# Install

```bash
npm install --save @etchteam/mobius
```

# Usage

Install the global CSS in your main app file

```js
import '@etchteam/mobius/src/styles/main.scss';
import '@etchteam/mobius/components.css';

// Optional font face
import '@etchteam/mobius/src/styles/fonts.scss';
```

Import a theme file

```js
import '@etchteam/mobius/src/styles/themes/default/main.scss';
```

```jsx
import React from 'react';
import { Button } from '@etchteam/mobius';

const MyComponent = () => (

Learn React

)
```