# Energi UI
UI library based on Material UI.

## Publish
```sh
yarn publish
```

## Usage with React

### Package Installation
```sh
yarn add @energi/ui
```

### Example
```js
import { Seo, Button } from '@energi/ui';

const MyComponent = () => {
  const meta = [
    {
      name: 'image',
      property: 'og:image',
      content: 'https://link.to/your/image',
    },
  ];

  return (
    <>
      <Seo title="page title" description="page description" meta={meta} />
      <Button variant="contained">Hello</Button>
    </>
  )
};
```
