(px: number)
| 40 | * @returns A `rem` value wrapped as an arbitrary style value. |
| 41 | */ |
| 42 | export function space(px: number): `[${string}]` { |
| 43 | return `[${internalSpace(px)}]`; |
| 44 | } |
| 45 | |
| 46 | /** |
| 47 | * Converts a pixel value to a font-relative `em` length. Useful for sizing elements |
no outgoing calls
no test coverage detected