When styling a component, what should be used if a specific condition is not fulfilled: null, undefined, or something else?
For example:
errorStyle: {
right: locale === Locales.ARABIC ? 0 : null,
left: locale !== Locales.ARABIC ? 0 : null,
...
},
or
errorStyle: {
right: locale === Locales.ARABIC ? 0 : undefined,
left: locale !== Locales.ARABIC ? 0 : undefined,
...
},