Skip to content
This repository has been archived by the owner on Feb 26, 2023. It is now read-only.

ubeac/svelte

Repository files navigation

uBeac - Svelte UI Component Library

npm version Build Status License npm GitHub issues GitHub stars GitHub forks

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.

Installation

To install uBeac, you can use npm:

npm install @ubeac/svelte

Usage

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>

Styles

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>

Demo

Check out the documentation website for live demos of each component and detailed usage instructions.