lasthourcloud/src/lib/components/Explainer.svelte

7 lines
159 B
Svelte
Raw Normal View History

2022-02-10 15:47:44 +01:00
<script>
export let text;
export let maxWidthClass = 'max-w-[24rem]';
</script>
<div class="py-1 text-xs text-stone-400 {maxWidthClass}">{@html text}</div>