We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e33bb9 commit 10950d0Copy full SHA for 10950d0
src/components/ui/buttons/Button.tsx
@@ -102,18 +102,13 @@ const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
102
},
103
ref
104
) => {
105
- console.log("🚀 ~ variant:", variant)
106
const handleOnClick = (e: React.MouseEvent<HTMLButtonElement>) => {
107
toId && scrollIntoView(toId)
108
customEventOptions && trackCustomEvent(customEventOptions)
109
110
onClick?.(e)
111
}
112
113
- console.log(
114
- "🚀 ~ buttonVariants({ variant, size, className }):",
115
- buttonVariants({ variant, size, className })
116
- )
117
const Comp = asChild ? Slot : "button"
118
return (
119
<Comp
0 commit comments