Files
watch-stock-list/src/lib/components/ui/aspect-ratio/aspect-ratio.svelte
2025-07-29 13:46:43 +08:00

8 lines
263 B
Svelte

<script lang="ts">
import { AspectRatio as AspectRatioPrimitive } from "bits-ui";
let { ref = $bindable(null), ...restProps }: AspectRatioPrimitive.RootProps = $props();
</script>
<AspectRatioPrimitive.Root bind:ref data-slot="aspect-ratio" {...restProps} />