# visuals

> React component library for building visualizations Edit

Latest version **1.0.1** (published 2017-07-23) · MIT license · 0 weekly downloads

## Install

```sh
npm install visuals
pnpm add visuals
yarn add visuals
bun add visuals
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2017-07-23 |
| First published | 2017-07-08 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 5 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Joe Kent |
| Maintainers | deadlybutter |

## Links

- npm: https://www.npmjs.com/package/visuals
- Repository: https://github.com/joekent-cms-project/visuals
- Homepage: https://github.com/joekent-cms-project/visuals#readme
- Issues: https://github.com/joekent-cms-project/visuals/issues
- npm.io page: https://npm.io/package/visuals

## Dependencies (5)

- [react](https://npm.io/package/react.md) ^15.6.1
- [redux](https://npm.io/package/redux.md) ^3.7.2
- [prop-types](https://npm.io/package/prop-types.md) ^15.5.10
- [react-redux](https://npm.io/package/react-redux.md) ^5.0.5
- [easy-container](https://npm.io/package/easy-container.md) ^1.0.0

## Recent versions

- 1.0.1 (latest) — 2017-07-23
- 1.0.0 — 2017-07-08

## README

# visuals
React component library for quickly building brilliant visualizations.

## install

```sh
$ npm install visuals
```

```js
import Visuals from 'visuals';

const Demo = (
  <Visuals.Graph>
    <Visuals.Rect x={50} y={50} width={'10%'} height={'10%'} fill="red" stroke="black">
      <Visuals.Rect x={'50%'} y={'50%'} width={'75%'} height={'75%'} fill="blue" stroke="black" />
      <Visuals.Rect x={'50%'} y={'50%'} width={'50%'} height={'50%'} fill="yellow" >
        <Visuals.Rect x={'50%'} y={'50%'} width={'50%'} height={'50%'} fill="green" />
      </Visuals.Rect>
    </Visuals.Rect>
    <Visuals.Text x={420} y={460} text="test test test" rotate={{ angle: "45" }} textAnchor="middle" fontFamily="Verdana" fontSize="35" />
  </Visuals.Graph>
);

ReactDOM.render(Demo, document.getElementById('demo'));
```

![Demo in motion](demo.gif)

## contributing

```sh
$ git clone https://github.com/joekent-cms-project/visuals.git
$ npm install

$ npm run storybook
$ npm run test # Coming soon
$ npm run lint # Coming soon
```

---
_Source: https://npm.io/package/visuals · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
