refactor: extract asChild in otherProps of Button
This commit is contained in:
parent
c7b4a306df
commit
dcbad53d39
@ -107,11 +107,12 @@ export interface ButtonProps
|
||||
|
||||
const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
|
||||
(props, ref) => {
|
||||
const [variantProps, otherProps] = resolveVariants(props);
|
||||
const [variantProps, otherPropsCompressed] = resolveVariants(props);
|
||||
const { asChild, ...otherPropsExtracted } = otherPropsCompressed;
|
||||
|
||||
const Comp = otherProps.asChild ? Slot : "button";
|
||||
const Comp = asChild ? Slot : "button";
|
||||
const compProps = {
|
||||
...otherProps,
|
||||
...otherPropsExtracted,
|
||||
className: buttonVariants(variantProps),
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user