diff --git a/packages/react/shared.ts b/packages/react/shared.ts index da5688c..bff6174 100644 --- a/packages/react/shared.ts +++ b/packages/react/shared.ts @@ -25,7 +25,7 @@ export function vcn>>({ ( anyProps: Record, options?: { - includeClassName?: boolean; + excludeClassName?: boolean; } ) => [RawVariantProps & { className?: string }, Record], ] { @@ -52,7 +52,7 @@ export function vcn>>({ ([variantProps, otherProps], [key, value]) => { if ( variantKeys.includes(key) || - (options.includeClassName && key === "className") + (!options.excludeClassName && key === "className") ) { return [{ ...variantProps, [key]: value }, otherProps]; }