import React from 'react';
import { StyleSheet } from 'react-native';
import { storiesOf } from '@storybook/react-native';
import { Divider } from '@aws-amplify/ui-react-native/dist/primitives';
storiesOf('Divider', module)
.add('default', () => Default Label)
.add('no label', () => )
.add('styles', () => (
Styled label
));
const styles = StyleSheet.create({
container: {
width: '75%',
},
label: {
color: 'teal',
},
line: {
backgroundColor: 'teal',
height: 1,
},
});