mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-17 01:11:38 +03:00
17 lines
387 B
Svelte
17 lines
387 B
Svelte
<script lang="ts">
|
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
import { cn } from '$lib/utils/style.js';
|
|
|
|
type $$Props = HTMLAttributes<HTMLDivElement>;
|
|
|
|
let className: $$Props['class'] = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<div
|
|
class={cn('flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2', className)}
|
|
{...$$restProps}
|
|
>
|
|
<slot />
|
|
</div>
|