Add Navbar using shadcn Button

This commit is contained in:
Neshura 2024-01-01 05:56:29 +01:00
parent e4607afd22
commit c7317324ab
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C
5 changed files with 187 additions and 0 deletions
src/lib/components/ui/button

View file

@ -0,0 +1,25 @@
<script lang="ts">
import { Button as ButtonPrimitive } from "bits-ui";
import { cn } from "$lib/utils";
import { buttonVariants, type Props, type Events } from ".";
type $$Props = Props;
type $$Events = Events;
let className: $$Props["class"] = undefined;
export let variant: $$Props["variant"] = "default";
export let size: $$Props["size"] = "default";
export let builders: $$Props["builders"] = [];
export { className as class };
</script>
<ButtonPrimitive.Root
{builders}
class={cn(buttonVariants({ variant, size, className }))}
type="button"
{...$$restProps}
on:click
on:keydown
>
<slot />
</ButtonPrimitive.Root>