hypnagaga/src/components/GraphicBlock/TextBlock.svelte
Prasanta Kumar Dutta 0ed0c89940 edits for #116
2023-09-05 13:06:20 +05:30

15 lines
348 B
Svelte

<script lang="ts">
import type { ContainerWidth } from '../@types/global';
/** Width of the component within the text well. */
export let width: ContainerWidth | null = null;
import Block from '../Block/Block.svelte';
</script>
{#if width}
<Block width="{width}" class="fmx-auto fmy-0">
<slot />
</Block>
{:else}
<slot />
{/if}