1
0
Fork 0
mirror of synced 2024-06-02 10:34:40 +12:00

spectrum button component, allow binding to queries

This commit is contained in:
Martin McKeaveney 2021-06-16 18:14:23 +01:00
parent 1a94ef5039
commit 9dc3725268
2 changed files with 18 additions and 20 deletions

View file

@ -135,6 +135,20 @@
"label": "Text",
"key": "text"
},
{
"type": "select",
"label": "Button Type",
"key": "type",
"options": ["primary", "secondary", "cta", "warning"],
"defaultValue": "primary"
},
{
"type": "select",
"label": "Size",
"key": "size",
"options": ["S", "M", "L", "XL"],
"defaultValue": "M"
},
{
"type": "boolean",
"label": "Disabled",

View file

@ -7,31 +7,15 @@
export let disabled = false
export let text = ""
export let onClick
export let size = "M"
export let type = "primary"
</script>
<button
class="default"
class={`spectrum-Button spectrum-Button--size${size} spectrum-Button--${type}`}
disabled={disabled || false}
use:styleable={$component.styles}
on:click={onClick}
>
{text || ""}
</button>
<style>
.default {
align-items: center;
padding: var(--spacing-s) var(--spacing-l);
box-sizing: border-box;
border-radius: 4px;
outline: none;
cursor: pointer;
transition: all 0.2s ease 0s;
overflow: hidden;
outline: none;
user-select: none;
white-space: nowrap;
text-align: center;
font-family: var(--font-sans);
}
</style>
</button>