(this: MacroContext | void, height: keyof typeof baseSpacing)
| 418 | } |
| 419 | |
| 420 | export function edgeToText(this: MacroContext | void, height: keyof typeof baseSpacing): string { |
| 421 | return `calc(${baseSpacing[height]} * 3 / 8)`; |
| 422 | } |
| 423 | |
| 424 | export function space(this: MacroContext | void, px: number): string { |
| 425 | return pxToRem(px); |
no outgoing calls
no test coverage detected