({width = true, height = false, font = false} = {})
| 415 | } |
| 416 | |
| 417 | export function getAllowedOverrides({width = true, height = false, font = false} = {}): string[] { |
| 418 | return (allowedOverrides as unknown as string[]) |
| 419 | .concat(width ? widthProperties : []) |
| 420 | .concat(height ? heightProperties : []) |
| 421 | .concat(font ? ['fontFamily', 'fontWeight', 'lineHeight', 'fontSize'] : []); |
| 422 | } |
no outgoing calls
no test coverage detected