# `@pexip/components`

Shared UI component library based on Pexip's design system.

## Install

`npm install @pexip/components`

## Usage

In your project, simply do the following:

```tsx
import {FullSizeWindow, Sidebar} from '@pexip/components';

() => <FullSizeWindow>My stuff</FullSizeWindow>;
```

There are some global styles as well, with fonts, tokens, etc.

```tsx
// Import fonts
import '@pexip/components/src/fonts.css';
// Import other global styles
import '@pexip/components/dist/index.css';
```
