mirror of
https://github.com/revanced/revanced-website.git
synced 2025-05-05 17:04:28 +02:00
17 lines
366 B
Svelte
17 lines
366 B
Svelte
<script lang="ts">
|
|
export let viewBoxHeight: number;
|
|
export let viewBoxWidth = viewBoxHeight;
|
|
export let svgHeight: number;
|
|
export let svgWidth = svgHeight;
|
|
</script>
|
|
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
preserveAspectRatio="none"
|
|
viewBox="0 0 {viewBoxHeight} {viewBoxWidth}"
|
|
style:height={svgHeight+'px'}
|
|
style:width={svgWidth+'px'}
|
|
>
|
|
<slot />
|
|
</svg>
|