add defaults to Button and ActionGroup components
This commit is contained in:
parent
4c750e34b9
commit
79ae6d8b78
|
@ -1,9 +1,9 @@
|
|||
<script>
|
||||
import "@spectrum-css/actiongroup/dist/index-vars.css"
|
||||
export let vertical;
|
||||
export let justified;
|
||||
export let quiet;
|
||||
export let compact;
|
||||
export let vertical = false;
|
||||
export let justified = false;
|
||||
export let quiet = false;
|
||||
export let compact = false;
|
||||
|
||||
// Attaches a spectrum-ActionGroup-item class to buttons inside the div
|
||||
function group(element) {
|
||||
|
|
|
@ -3,7 +3,11 @@
|
|||
|
||||
export let disabled = false
|
||||
export let size = "M"
|
||||
export let cta, primary, secondary, warning, overBackground
|
||||
export let cta = false;
|
||||
export let primary = false;
|
||||
export let secondary = false;
|
||||
export let warning = false
|
||||
export let overBackground = false;
|
||||
export let quiet = false
|
||||
export let icon = undefined
|
||||
export let active = false
|
||||
|
|
Loading…
Reference in New Issue