refactor: remove option to disable excluding
This commit is contained in:
parent
2adfcd5392
commit
694ee880f3
@ -99,18 +99,11 @@ export function vcn<V extends VariantType, N extends string>({
|
||||
) => string,
|
||||
<AnyPropBeforeResolve extends Record<string, any>>(
|
||||
anyProps: AnyPropBeforeResolve,
|
||||
options?: {
|
||||
excludePreset?: boolean;
|
||||
excludeClassName?: boolean;
|
||||
}
|
||||
) => [
|
||||
Partial<VariantKV<V>> & {
|
||||
className?: string;
|
||||
preset?: N | undefined;
|
||||
},
|
||||
Partial<VariantKV<V>>,
|
||||
Omit<
|
||||
AnyPropBeforeResolve,
|
||||
keyof Partial<VariantKV<V>> | "className" | "preset"
|
||||
keyof Partial<VariantKV<V>> | "preset" | "className"
|
||||
>,
|
||||
],
|
||||
] {
|
||||
|
Loading…
x
Reference in New Issue
Block a user