7 lines
263 B
Svelte
7 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} />
|