mirror of https://github.com/ctk-hq/ctk
feat(frontend): created `classNames` utility
parent
07f56a4211
commit
c00d56e0db
@ -0,0 +1,3 @@
|
||||
export const classNames = (...classes: string[]) => {
|
||||
return classes.filter(Boolean).join(" ");
|
||||
};
|
||||
Loading…
Reference in New Issue