mirror of
https://github.com/luckfox-eng29/kvm.git
synced 2026-01-18 11:38:32 +01:00
9 lines
199 B
TypeScript
9 lines
199 B
TypeScript
import { defineConfig } from "cva";
|
|
import { twMerge } from "tailwind-merge";
|
|
|
|
export const { cva, cx, compose } = defineConfig({
|
|
hooks: {
|
|
onComplete: className => twMerge(className),
|
|
},
|
|
});
|