* refactor: change all popper related element to use useForwardPropsEmits * refactor: use useEmitAsProps from radix-vue
8 lines
231 B
TypeScript
8 lines
231 B
TypeScript
import { type ClassValue, clsx } from 'clsx'
|
|
import { twMerge } from 'tailwind-merge'
|
|
import { camelize, getCurrentInstance, toHandlerKey } from 'vue'
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs))
|
|
}
|