/** * A very basic alternative to https://github.com/JedWatson/classnames */ export function cn(...classNames: Array) { return classNames.filter(Boolean).join(' '); }