You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
willaengine/resources/js/components/Inputs/ButtonShodowed.vue

22 lines
509 B

6 years ago
<template>
<button class="WM-Btn WM-InlineBlock WM-Margin-L-10" :class="BtnClass" type="button">
<span><i class="NoMargin" :class="IconClass" aria-hidden="true"></i> {{ Text }} </span>
</button>
</template>
<script>
export default {
props: {
BtnClass: { default: "WM-Btn-Black" },
Icon: { default: "ok" },
Text: { default: "" },
},
data: function () {
return {
IconClass: 'WMi-' + this.Icon,
}
},
};
</script>