DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
402 Bytes
<script>export let ratio = 1 / 1;
export let el = void 0;
const attrs = {
"data-aspect-ratio-root": ""
};
</script>
<div style:position="relative" style:width="100%" style:padding-bottom="{ratio ? 100 / ratio : 0}%">
<div
bind:this={el}
style:position="absolute"
style:top="0"
style:right="0"
style:bottom="0"
style:left="0"
{...$$restProps}
{...attrs}
>
<slot />
</div>
</div>