UNPKG

@public-ui/components

Version:

Contains all web components that belong to KoliBri - The accessible HTML-Standard.

6 lines (5 loc) 270 B
type ClassValue = string | number | boolean | null | undefined | ClassArray | ClassDictionary; type ClassArray = ClassValue[]; type ClassDictionary = Record<string, boolean | null | undefined>; declare const clsx: (...args: ClassValue[]) => string; export default clsx;