mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-14 07:08:30 +00:00
4 lines
114 B
TypeScript
4 lines
114 B
TypeScript
export default function cx(...classes: Array<string | undefined>) {
|
|
return classes.filter(Boolean).join(' ');
|
|
}
|