refactor: extract asChild in otherProps of Button

This commit is contained in:
p-sw 2024-05-28 22:15:39 +09:00
parent c7b4a306df
commit dcbad53d39

View File

@ -107,11 +107,12 @@ export interface ButtonProps
const Button = React.forwardRef<HTMLButtonElement, ButtonProps>( const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
(props, ref) => { (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 = { const compProps = {
...otherProps, ...otherPropsExtracted,
className: buttonVariants(variantProps), className: buttonVariants(variantProps),
}; };