lasthourcloud/src/lib/components/Explainer.svelte

7 lines
155 B
Svelte
Raw Normal View History

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