From 69166b1502aad3a6c8d3c77f65e290a4ed895bd0 Mon Sep 17 00:00:00 2001 From: Nicolas Gallagher Date: Sun, 27 Dec 2015 10:22:00 +0000 Subject: [PATCH] [fix] StyleSheet: support textAlign 'inherit' --- src/modules/StylePropTypes/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/StylePropTypes/index.js b/src/modules/StylePropTypes/index.js index e5f63d36..42bf8231 100644 --- a/src/modules/StylePropTypes/index.js +++ b/src/modules/StylePropTypes/index.js @@ -95,7 +95,7 @@ export default { paddingVertical: numberOrString, position: oneOf([ 'absolute', 'fixed', 'relative', 'static' ]), right: numberOrString, - textAlign: oneOf([ 'center', 'justify', 'justify-all', 'left', 'right' ]), + textAlign: oneOf([ 'center', 'inherit', 'justify', 'justify-all', 'left', 'right' ]), textDecoration: string, textOverflow: string, textShadow: string,