22 lines
438 B
Svelte
22 lines
438 B
Svelte
<script lang="typescript">
|
|
export let label: string;
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
button {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
width: auto;
|
|
height: 26px;
|
|
|
|
padding: 0 10px;
|
|
margin: 0 3px;
|
|
|
|
&:focus {
|
|
box-shadow: 0 0 12px 4px rgb(255 255 255 / 0.5);
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<button class="btn btn-secondary" tabindex="-1" on:click> {label} </button>
|