From 99151f13f221d6a621303effe5f4bc37b09175bc Mon Sep 17 00:00:00 2001 From: p-sw Date: Sun, 19 May 2024 12:38:22 +0900 Subject: [PATCH] refactor: use excludeClassName instead of includeClassName in vcn resolve option --- packages/react/shared.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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]; }