mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-03 22:26:43 +00:00

* feat: implement pixel dance animation component, page and command * feat: make entire dance page draggable * feat: add dance transition for ui-iframe extension loading
15 lines
346 B
Svelte
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>
|