Skip to content

Latest commit

 

History

History
25 lines (23 loc) · 394 Bytes

Divider.md

File metadata and controls

25 lines (23 loc) · 394 Bytes

Usage

...
import { Divider } from 'react-native-material-ui';
...
render() {
    <View>
      <Text>Hello world!</Text>
      <Divider/>
      <Text>
    </View>
}

API

const propTypes = {
    inset: PropTypes.bool,
    style: PropTypes.shape({
        container: View.propTypes.style,
    }),
};