Wrap delegated Button/Image in DOM element, remove data-slot attributes
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -20,7 +20,11 @@ export interface ButtonProps
|
||||
}
|
||||
|
||||
function Button({ variant = "default", size = "default", ...props }: ButtonProps) {
|
||||
return <ShadcnButton variant={variant} size={size} {...props} />
|
||||
return (
|
||||
<span className="inline-block">
|
||||
<ShadcnButton variant={variant} size={size} {...props} />
|
||||
</span>
|
||||
)
|
||||
}
|
||||
|
||||
export { Button }
|
||||
|
||||
Reference in New Issue
Block a user