Clean up widget type naming conventions

This commit is contained in:
Keavon Chambers
2021-07-16 15:57:42 -07:00
parent c453199704
commit c2f735504d
13 changed files with 77 additions and 109 deletions
@@ -1,6 +1,6 @@
<template>
<button class="icon-button" :class="`size-${String(size)}`">
<Icon :icon="icon" />
<IconLabel :icon="icon" />
</button>
</template>
@@ -53,7 +53,7 @@
<script lang="ts">
import { defineComponent } from "vue";
import Icon from "@/components/widgets/labels/Icon.vue";
import IconLabel from "@/components/widgets/labels/IconLabel.vue";
export default defineComponent({
props: {
@@ -61,6 +61,6 @@ export default defineComponent({
size: { type: Number, required: true },
gapAfter: { type: Boolean, default: false },
},
components: { Icon },
components: { IconLabel },
});
</script>