Huakun Shen ad83e89e52
feat: implement pixel dance animation component, page and command (#8)
* feat: implement pixel dance animation component, page and command

* feat: make entire dance page draggable

* feat: add dance transition for ui-iframe extension loading
2024-11-03 19:34:07 -05:00

15 lines
346 B
Svelte

<script lang="ts">
import { cn } from "@kksh/ui/utils"
import { type Snippet } from "svelte"
const {
children,
class: className,
...restProps
}: { children: Snippet; class?: string; [key: string]: any } = $props()
</script>
<div class={cn("flex items-center justify-center", className)} {...restProps}>
{@render children?.()}
</div>