diff --git a/packages/react/shared.tsx b/packages/react/shared.tsx index 37ee8e2..5df251d 100644 --- a/packages/react/shared.tsx +++ b/packages/react/shared.tsx @@ -85,7 +85,7 @@ type PresetType = { /** * A utility function to provide variants and presets to the component * - * @param config - Variant Configuration + * @param param - Variant Configuration * @returns function (variantProps) -> class name, * @returns function (anyProps) -> [variantProps, otherProps] */ @@ -109,7 +109,7 @@ export function vcn(param: { /** * Any Props -> Variant Props, Other Props */ - >( + >( anyProps: AnyPropBeforeResolve ) => [ Partial> & { @@ -139,7 +139,7 @@ export function vcn>(param: { /** * Any Props -> Variant Props, Other Props */ - >( + >( anyProps: AnyPropBeforeResolve ) => [ Partial> & { @@ -174,11 +174,9 @@ export function vcn< * @param variantProps - The variant props including className. * @returns The class name. */ - ({ - className, - preset, - ...variantProps - }: { className?: string; preset?: keyof P } & Partial>) => { + (variantProps: { className?: string; preset?: keyof P } & Partial>) => { + const { className, preset, ...otherVariantProps } = variantProps; + const currentPreset: P[keyof P] | null = presets && preset ? (presets as NonNullable

)[preset] ?? null : null; const presetVariantKeys: (keyof V)[] = Object.keys(currentPreset ?? {}); @@ -189,7 +187,7 @@ export function vcn< ).map( ([variantKey, defaultValue]) => variants[variantKey][ - (variantProps as unknown as Partial>)[variantKey] ?? + (otherVariantProps as unknown as Partial>)[variantKey] ?? (!!currentPreset && presetVariantKeys.includes(variantKey) ? (currentPreset as Partial>)[variantKey] ?? defaultValue