/proi-ui

yet another Svelte ui library

Primary LanguageSvelteMIT LicenseMIT

proi-ui

yet another Svelte ui library

DevBadge

drawing

Installation

npm i @specialdoom/proi-ui

Docs

Check out the docs.

Coming next

  • other components
  • using a styling preprocessor for styling components
  • include components style in main styling file

Migrate to version 2.0.0

  • you have to import @specialdoom/proi-ui/dist/proi-ui.css for styling

Basic Usage

<script>
import { Button, Input } from 'proi-ui'

function click () {
    console.log('clicked');
}
</script>

<Input label="My label" />
<Button on:click={click}/>