refactor: use excludeClassName instead of includeClassName in vcn resolve option

This commit is contained in:
p-sw 2024-05-19 12:38:22 +09:00
parent 376ccc724f
commit 99151f13f2

View File

@ -25,7 +25,7 @@ export function vcn<V extends Record<string, Record<string, string>>>({
( (
anyProps: Record<string, any>, anyProps: Record<string, any>,
options?: { options?: {
includeClassName?: boolean; excludeClassName?: boolean;
} }
) => [RawVariantProps<V> & { className?: string }, Record<string, any>], ) => [RawVariantProps<V> & { className?: string }, Record<string, any>],
] { ] {
@ -52,7 +52,7 @@ export function vcn<V extends Record<string, Record<string, string>>>({
([variantProps, otherProps], [key, value]) => { ([variantProps, otherProps], [key, value]) => {
if ( if (
variantKeys.includes(key) || variantKeys.includes(key) ||
(options.includeClassName && key === "className") (!options.excludeClassName && key === "className")
) { ) {
return [{ ...variantProps, [key]: value }, otherProps]; return [{ ...variantProps, [key]: value }, otherProps];
} }