mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-20 04:16:00 +00:00
20 lines
329 B
Svelte
20 lines
329 B
Svelte
<script lang="ts">
|
|
export let text: string;
|
|
export let colorClass: string = 'premium-gradient';
|
|
</script>
|
|
|
|
<div class="highlight {colorClass}">
|
|
{text}
|
|
</div>
|
|
|
|
<style>
|
|
.highlight {
|
|
text-align: center;
|
|
margin: 10px;
|
|
font-size: large;
|
|
font-weight: bold;
|
|
border: 1px solid;
|
|
padding: 5px;
|
|
}
|
|
</style>
|