(...parts: Parts)
| 5 | & Record<string, string>; |
| 6 | |
| 7 | export default function buildClassName(...parts: Parts) { |
| 8 | return parts.filter(Boolean).join(' '); |
| 9 | } |
| 10 | |
| 11 | export function createClassNameBuilder(componentName: string) { |
| 12 | return ((elementName: string, ...modifiers: PartsWithGlobals) => { |
no test coverage detected