Core Components
The “Core Components” are very mild customisation on top of shadcn-svelte. Their docs are very thorough, so I’ll mostly focus on the customisations/stylings here.
Button
<script lang="ts">
import { UI } from '@bojit/svelte-components';
</script>
Slider
<script lang="ts">
import { UI } from '@bojit/svelte-components';
</script>
<UI.Slider type="single" value={50} max={100} step={1} class="my-3" />