48 lines
909 B
Svelte
48 lines
909 B
Svelte
<script>
|
|
import { buildStyle } from "../../helpers.js"
|
|
export let value = ""
|
|
export let text = ""
|
|
export let icon = ""
|
|
export let onClick = (value) => {}
|
|
export let selected = false
|
|
|
|
$: useIcon = !!icon
|
|
</script>
|
|
|
|
<div class="flatbutton" class:selected on:click={() => onClick(value || text)}>
|
|
{#if useIcon}
|
|
<i class={icon} />
|
|
{:else}
|
|
<span>
|
|
{@html text}
|
|
</span>
|
|
{/if}
|
|
</div>
|
|
|
|
<style>
|
|
.flatbutton {
|
|
cursor: pointer;
|
|
height: 32px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
background: white;
|
|
color: var(--grey-7);
|
|
border-radius: var(--border-radius-m);
|
|
font-size: var(--font-size-xs);
|
|
font-weight: 500;
|
|
transition: all 0.3s;
|
|
text-rendering: optimizeLegibility;
|
|
}
|
|
|
|
.selected {
|
|
background: var(--grey-2);
|
|
color: var(--ink);
|
|
}
|
|
|
|
i {
|
|
font-size: 16px;
|
|
}
|
|
</style>
|