(node: SceneNode, config: CodegenConfig)
| 129 | function buildFallbackProps(node: SceneNode, config: CodegenConfig): Record<string, string> { |
| 130 | return { |
| 131 | width: normalizeCssValue(`${toDecimalPlace(node.width)}px`, config), |
| 132 | height: normalizeCssValue(`${toDecimalPlace(node.height)}px`, config) |
| 133 | } |
| 134 | } |
no test coverage detected