import React from 'react'; import type { PrepaidNudgeProps } from '../core/types'; /** * C5 prepaid nudge — shown when COD is eligible to encourage prepaid checkout. */ const PrepaidNudge: React.FC = ({ copy, ctaUrl, theme = 'light' }) => { const isDark = theme === 'dark'; return (

{copy}

{ctaUrl ? ( Pay online instead ) : null}
); }; export default PrepaidNudge;