mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 22:26:01 +00:00
19 lines
428 B
Svelte
19 lines
428 B
Svelte
<script lang="ts">
|
|
import FormStyledButton from '../buttons/FormStyledButton.svelte';
|
|
import { openWebLink } from '../utility/simpleTools';
|
|
|
|
export let text: string;
|
|
export let link: string;
|
|
export let colorClass: string = '';
|
|
</script>
|
|
|
|
<div class="center">
|
|
<FormStyledButton on:click={() => openWebLink(link)} value={text} skipWidth {colorClass} />
|
|
</div>
|
|
|
|
<style>
|
|
.center {
|
|
text-align: center;
|
|
}
|
|
</style>
|