Spaces:
Running
Running
| <script lang="ts" module> | |
| import { tv, type VariantProps } from "tailwind-variants"; | |
| export const emptyMediaVariants = tv({ | |
| base: "mb-2 flex shrink-0 items-center justify-center [&_svg]:pointer-events-none [&_svg]:shrink-0", | |
| variants: { | |
| variant: { | |
| default: "bg-transparent", | |
| icon: "bg-muted text-foreground flex size-10 shrink-0 items-center justify-center rounded-xl [&_svg:not([class*='size-'])]:size-5", | |
| }, | |
| }, | |
| defaultVariants: { | |
| variant: "default", | |
| }, | |
| }); | |
| export type EmptyMediaVariant = VariantProps<typeof emptyMediaVariants>["variant"]; | |
| </script> | |
| <script lang="ts"> | |
| import { cn, type WithElementRef } from "$lib/utils.js"; | |
| import type { HTMLAttributes } from "svelte/elements"; | |
| let { | |
| ref = $bindable(null), | |
| class: className, | |
| children, | |
| variant = "default", | |
| ...restProps | |
| }{ variant?: EmptyMediaVariant } = $props(); | |
| </script> | |
| <div | |
| bind:this={ref} | |
| data-slot="empty-icon" | |
| data-variant={variant} | |
| class={cn(emptyMediaVariants({ variant }), className)} | |
| {...restProps} | |
| > | |
| {@render children?.()} | |
| </div> | |