blob: d46c7f0c13a26b570dafec2c7333a2b565c0c7da [file] [log] [blame]
Skyler Grey22205e62023-08-06 15:20:25 +00001<script lang="ts">
2 import { cn } from "$lib/utils";
3
4 let className: string | undefined | null = undefined;
5 export { className as class };
6</script>
7
8<div class={cn("flex items-center p-6 pt-0", className)} {...$$restProps}>
9 <slot />
10</div>