(...args: ClassValue[])
| 2 | type ClassValue = string | undefined | null | false | number /* number ~ 0 */ |
| 3 | |
| 4 | export function joinClassNames(...args: ClassValue[]): string { |
| 5 | return args.filter(Boolean).join(' ') |
| 6 | } |
| 7 | |
| 8 | /* |
| 9 | TODO: dedup with @full-ui/headless-grid somehow |
no outgoing calls
no test coverage detected
searching dependent graphs…