mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-17 15:28:04 +08:00
15 lines
216 B
Svelte
15 lines
216 B
Svelte
<script lang="ts">
|
|
export let condition: boolean;
|
|
export let wrapperClass = "";
|
|
</script>
|
|
|
|
{#if condition}
|
|
<div class={wrapperClass}>
|
|
<slot />
|
|
</div>
|
|
{:else}
|
|
<slot />
|
|
{/if}
|
|
|
|
<style lang="scss" global></style>
|