uBeac is a powerful and flexible Svelte UI component library, designed to help developers build enterprise-grade web applications quickly and easily. With a focus on rapid application development and framework independence, uBeac is the perfect complement to any CSS framework. The component's UI is inspired by Tabler UI Kit built on top of Bootstrap css.
To install uBeac, you can use npm:
npm install @ubeac/svelte
Once installed, you can import the components and use them in your Svelte application:
<script>
import { Button } from '@ubeac/svelte'
</script>
<Button>Hello uBeac</Button>
uBeac components have default styles which is based on tabler. which you can use like this:
<script>
import {Button} from '@ubeac/svelte'
import '@ubeac/svelte/styles/tabler.css'
</script>
<Button>Hello World!</Button>
Check out the documentation website for live demos of each component and detailed usage instructions.