# Svelte UI Component Library

A powerful and flexible Svelte UI component library.

## Installation

```bash
npm i svelte-ui-library-kit
```

## Usage

```js
<script>
	import { Button } from "svelte-ui-library-kit";
</script>

<Button>Button</Button>
```

## Styles

Components have default styles, which you can use like this:

```js
<script>
	import { Button } from "svelte-ui-library-kit";
</script>

<Button color="primary">Button</Button>
```
