Is there a way we can make the default Text-component support the `flex` prop? Today, this doesn't work: ```tsx <Text flex="1">My text takes up all the space</Text> ``` But this does: ```tsx <Text style={{ flex: "1" }}>My text takes up all the space</Text> ```