diff --git a/packages/react/shared.tsx b/packages/react/shared.tsx index 05f154b..494c302 100644 --- a/packages/react/shared.tsx +++ b/packages/react/shared.tsx @@ -112,7 +112,10 @@ export function vcn< >( anyProps: AnyPropBeforeResolve ) => [ - Partial>, + Partial> & { + className?: string; + preset?: N; + }, Omit< AnyPropBeforeResolve, keyof Partial> | "preset" | "className" @@ -162,14 +165,21 @@ export function vcn< return Object.entries(anyProps).reduce( ([variantProps, otherProps], [key, value]) => { - if (variantKeys.includes(key)) { + if ( + variantKeys.includes(key) || + key === "className" || + key === "preset" + ) { return [{ ...variantProps, [key]: value }, otherProps]; } return [variantProps, { ...otherProps, [key]: value }]; }, [{}, {}] ) as [ - Partial>, + Partial> & { + className?: string; + preset?: N; + }, Omit< typeof anyProps, keyof Partial> | "preset" | "className"