svelte-ui-library-kit
Version:
A powerful and flexible Svelte UI component library.
32 lines (21 loc) • 449 B
Markdown
# 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>
```