0.0.8 • Published 15 days ago

@gear-js/vara-ui v0.0.8

Weekly downloads
-
License
GPL-3.0
Repository
github
Last release
15 days ago

Description

A React library that provides components that are used across Vara applications.

Installation

Install package:

npm install @gear-js/vara-ui

or

yarn add @gear-js/vara-ui

Import styles in application's root:

import '@gear-js/vara-ui/styles.css';

Getting started

Simple as it is, here's quick example:

import { Button } from '@gear-js/vara-ui';
import { ReactComponent as ArrowSVG } from './images/arrow.svg';

function BackButton() {
  const handleClick = () => {
    console.log('Going back!');
  };

  return <Button text="Go back" icon={ArrowSVG} onClick={handleClick} />;
}

export { BackButton };
0.0.8

15 days ago

0.0.7

2 months ago

0.0.6

4 months ago

0.0.5

5 months ago

0.0.4

5 months ago

0.0.3

5 months ago

0.0.2

9 months ago

0.0.1

9 months ago