mirror of
https://github.com/Ku6epXBOCTuK/easy-png-tools.git
synced 2026-09-14 13:36:36 +00:00
21 lines
363 B
Svelte
21 lines
363 B
Svelte
<script lang="ts">
|
|
import type { Snippet } from "svelte";
|
|
|
|
interface Props {
|
|
children: Snippet;
|
|
}
|
|
let { children }: Props = $props();
|
|
</script>
|
|
|
|
<section class="panel">
|
|
{@render children()}
|
|
</section>
|
|
|
|
<style>
|
|
.panel {
|
|
background: var(--color-panel);
|
|
border: var(--size-border) solid var(--color-border);
|
|
border-radius: var(--radius-s);
|
|
}
|
|
</style>
|