feat: use line height preference in super editor (skip e2e) (#2045)
This commit is contained in:
3
packages/utils/src/Domain/Utils/ClassNames.ts
Normal file
3
packages/utils/src/Domain/Utils/ClassNames.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export const classNames = (...values: (string | boolean | undefined)[]): string => {
|
||||
return values.map((value) => (typeof value === 'string' ? value : null)).join(' ')
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
export * from './Utils/Utils'
|
||||
export * from './Utils/ClassNames'
|
||||
export * from './Uuid/UuidGenerator'
|
||||
export * from './Uuid/UuidMap'
|
||||
export * from './Uuid/Utils'
|
||||
|
||||
Reference in New Issue
Block a user