fix: add type in Button
This commit is contained in:
parent
5276eb8ba9
commit
9573fd1e1a
@ -111,18 +111,16 @@ export interface ButtonProps
|
|||||||
const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
|
const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
|
||||||
(props, ref) => {
|
(props, ref) => {
|
||||||
const [variantProps, otherPropsCompressed] = resolveVariants(props);
|
const [variantProps, otherPropsCompressed] = resolveVariants(props);
|
||||||
const { asChild, ...otherPropsExtracted } = otherPropsCompressed;
|
const { asChild, type, ...otherPropsExtracted } = otherPropsCompressed;
|
||||||
|
|
||||||
const Comp = asChild ? Slot : "button";
|
const Comp = asChild ? Slot : "button";
|
||||||
const compProps = {
|
|
||||||
...otherPropsExtracted,
|
|
||||||
className: buttonVariants(variantProps),
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Comp
|
<Comp
|
||||||
ref={ref}
|
ref={ref}
|
||||||
{...compProps}
|
type={type ?? "button"}
|
||||||
|
className={buttonVariants(variantProps)}
|
||||||
|
{...otherPropsExtracted}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user