mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 16:36:00 +00:00
21 lines
336 B
Svelte
21 lines
336 B
Svelte
<script lang="ts">
|
|
export let label;
|
|
export let labelProps: any = {};
|
|
</script>
|
|
|
|
<div class="row">
|
|
<div class="label" {...labelProps} on:click={labelProps.onClick}>{label}</div>
|
|
<div><slot /></div>
|
|
</div>
|
|
|
|
<style>
|
|
.row {
|
|
display: flex;
|
|
margin: 10px;
|
|
}
|
|
.label {
|
|
width: 10vw;
|
|
font-weight: bold;
|
|
}
|
|
</style>
|