Skip to content

Commit

Permalink
1,564th Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Shyam-Chen committed Oct 1, 2024
1 parent cc69027 commit 7da38ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/components/button/Button.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { ref, computed, watchEffect, inject, useTemplateRef } from 'vue';
import Spinner from '../spinner/Spinner.vue';
interface Props extends /* @vue-ignore */ Omit<ButtonHTMLAttributes, 'onClick'> {
disabled?: ButtonHTMLAttributes['disabled'];
label?: string;
icon?: string;
variant?: 'contained' | 'outlined' | 'text';
Expand All @@ -14,6 +13,7 @@ interface Props extends /* @vue-ignore */ Omit<ButtonHTMLAttributes, 'onClick'>
prepend?: string;
append?: string;
loading?: boolean;
disabled?: boolean;
}
defineProps<Props>();
Expand Down

0 comments on commit 7da38ff

Please sign in to comment.