杂货铺

66 阅读1分钟

maizi.png

clsx

type ClsxProps = Array<string | boolean | undefined | null>;
export default function clsx(...classes: ClsxProps) {
  return classes.filter(Boolean).join(" ");
}