UNPKG

@protonapp/react-native-material-ui

Version:
27 lines (24 loc) 485 B
# [Subheader](https://material.io/guidelines/components/subheaders.html) ### Usage ```js ... import { Subheader } from 'react-native-material-ui'; ... render() { <View> <Subheader text="Subheader text" /> </View> } ``` ### API ```js const propTypes = { text: PropTypes.string.isRequired, inset: PropTypes.bool, lines: PropTypes.number, style: PropTypes.shape({ container: View.propTypes.style, text: Text.propTypes.style, }), }; ```