mirror of
https://github.com/tiennm99/coolify.git
synced 2026-04-20 05:20:56 +00:00
7 lines
155 B
Svelte
7 lines
155 B
Svelte
<script>
|
|
export let text;
|
|
export let customClass = 'max-w-[24rem]';
|
|
</script>
|
|
|
|
<div class="py-1 text-xs text-stone-400 {customClass}">{@html text}</div>
|