feat: Add post composer

This commit is contained in:
Jesse Wierzbinski 2024-04-26 21:04:02 -10:00
parent c550978872
commit 3004bf4816
No known key found for this signature in database
4 changed files with 126 additions and 6 deletions

View file

@ -1,5 +1,5 @@
<template>
<ButtonsBase class="bg-pink-500 hover:bg-pink-400">
<ButtonsBase :loading="loading" class="bg-pink-500 hover:bg-pink-400">
<slot />
</ButtonsBase>
</template>
@ -9,7 +9,11 @@ import type { ButtonHTMLAttributes } from "vue";
interface Props extends /* @vue-ignore */ ButtonHTMLAttributes {}
defineProps<Props>();
defineProps<
Props & {
loading?: boolean;
}
>();
</script>
<style></style>