@protonapp/react-native-material-ui
Version:
React Native Material Design Components
27 lines (24 loc) • 485 B
Markdown
# [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,
}),
};
```