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