Remove thin button prop
Some checks are pending
Build / build (push) Waiting to run

This commit is contained in:
Trenton Zimmer
2025-01-01 23:02:27 -05:00
parent e5d1af7f02
commit 7b2e4493ec

View File

@@ -55,10 +55,6 @@ const props = defineProps({
type: Boolean,
default: true,
},
thin: {
type: Boolean,
default: false,
},
});
const is = computed(() => {
@@ -103,7 +99,6 @@ const componentClass = computed(() => {
"hover:scale-[1.02] hover:shadow-xl",
props.disabled ? "cursor-not-allowed" : "cursor-pointer",
props.roundedFull ? "rounded-lg" : "rounded",
props.thin ? "scale-y-0" : "scale-y-[90%]",
getButtonColor(props.color, props.outline, !props.disabled, props.active),
];