# radix

[![Travis][build-badge]][build]
[![npm package][npm-badge]][npm]
[![Coveralls][coveralls-badge]][coveralls]

Radix is a design system and component library for Modulz design tool. MIT license.

To use Radix in your project, first install it with NPM.

`npm install radix-ds`

Then you can import Radix components into your React components

`import { Flexbox } from 'radix-ds';`

To import multiple Radix components, use this syntax

```
import {
  Flexbox,
  Box,
  Button
} from 'radix-ds';
```

You can also import the Radix theme, if you wish to create your own components

`import { Theme } from 'radix-ds';`

[build-badge]: https://img.shields.io/travis/user/repo/master.png?style=flat-square
[build]: https://travis-ci.org/user/repo

[npm-badge]: https://img.shields.io/npm/v/npm-package.png?style=flat-square
[npm]: https://www.npmjs.org/package/npm-package

[coveralls-badge]: https://img.shields.io/coveralls/user/repo/master.png?style=flat-square
[coveralls]: https://coveralls.io/github/user/repo
