import { TNodeShape, TNodeType } from '@native-html/transient-render-engine'; export default function mergeCollapsedMargins( collapsedMarginTop: number | null | undefined, nativeStyle: ReturnType['getNativeStyles']> ): ReturnType['getNativeStyles']> { if (typeof collapsedMarginTop !== 'number') { return nativeStyle; } return { ...nativeStyle, marginTop: collapsedMarginTop }; }