yet another Svelte ui library
npm i @specialdoom/proi-ui
Check out the docs.
- other components
- using a styling preprocessor for styling components
- include components style in main styling file
- you have to import
@specialdoom/proi-ui/dist/proi-ui.css
for styling
<script>
import { Button, Input } from 'proi-ui'
function click () {
console.log('clicked');
}
</script>
<Input label="My label" />
<Button on:click={click}/>