1.2.1 • Published 5 years ago

anibook-ui v1.2.1

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

UI Components using React

Demo

Using as lib

Install

Fist you need to install it using NPM or Yarn.

Yarn

$ yarn add anibook-ui

NPM

$ npm i anibook-ui

Most basic example

import React from 'react';
import ReactDOM from 'react-dom';

import { Card } from 'anibook-ui';

function App() {
  return (
    <Card
      backgroundColor="#333"
      image={
        <img alt="High Score Girl" src="https://i.ibb.co/jR4rRqK/oono.png" />
      }
      text={<p>High Score Girl</p>}
      downColorLayer="#00d2d3"
      upColorLayer="#2e86de"
    />
  );
}

ReactDOM.render(<App />, document.querySelector('#app'));
1.2.1

5 years ago

1.2.0

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.0

5 years ago