mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-05-03 02:11:20 +00:00
27 lines
715 B
Svelte
27 lines
715 B
Svelte
<script lang="ts">
|
|
import { Calendar as CalendarPrimitive } from 'bits-ui';
|
|
import { ChevronLeft } from 'radix-icons-svelte';
|
|
import { buttonVariants } from '$lib/components/ui/button';
|
|
import { cn } from '$lib/utils';
|
|
|
|
type $$Props = CalendarPrimitive.PrevButtonProps;
|
|
type $$Events = CalendarPrimitive.PrevButtonEvents;
|
|
|
|
let className: $$Props['class'] = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<CalendarPrimitive.PrevButton
|
|
on:click
|
|
class={cn(
|
|
buttonVariants({ variant: 'outline' }),
|
|
'h-7 w-7 bg-transparent p-0 opacity-50 hover:opacity-100',
|
|
className
|
|
)}
|
|
{...$$restProps}
|
|
let:builder
|
|
>
|
|
<slot {builder}>
|
|
<ChevronLeft class="h-4 w-4" />
|
|
</slot>
|
|
</CalendarPrimitive.PrevButton>
|