11 lines
462 B
TypeScript
11 lines
462 B
TypeScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
/**
|
|
* Converts an object with boolean properties to a CSS string.
|
|
* Only the property names with truthy values are included.
|
|
*/
|
|
// TODO remove NZ
|
|
export const cx = (obj: Record<string, boolean>) => Object.keys(obj).filter((prop) => obj[prop]).join(' ')
|