mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-08-31 23:53:25 +00:00
14 lines
367 B
Svelte
14 lines
367 B
Svelte
![]() |
<script lang="ts">
|
||
|
import { Calendar as CalendarPrimitive } from "bits-ui";
|
||
|
import { cn } from "$lib/utils.js";
|
||
|
|
||
|
type $$Props = CalendarPrimitive.GridRowProps;
|
||
|
|
||
|
let className: $$Props["class"] = undefined;
|
||
|
export { className as class };
|
||
|
</script>
|
||
|
|
||
|
<CalendarPrimitive.GridRow class={cn("flex", className)} {...$$restProps}>
|
||
|
<slot />
|
||
|
</CalendarPrimitive.GridRow>
|