import type { ReactNode } from 'react'; export const getTextComponent = ( content: ReactNode, textElement: ReactNode ): ReactNode => { if (!content) { return null; } if (typeof content === 'string' || typeof content === 'number') { return textElement; } return content; };