fix: add unknown index signature in VariantProps

This commit is contained in:
p-sw 2024-06-05 18:45:10 +09:00
parent 9c996f564a
commit 8cb43b3c1f

View File

@ -254,7 +254,7 @@ export function vcn<
export type VariantProps<F extends (props: any) => string> = F extends (
props: infer P
) => string
? P
? P & { [key: string]: unknown }
: never;
/**