Files
react-native-web/docs/storybook/1-components/CheckBox/examples/styles.js
Nicolas Gallagher 6de892c92b [add] CheckBox component
Implements the CheckBox component and adds a web-only 'color' prop to
allow the color of the checkbox to be customized.
2017-12-20 14:51:44 +00:00

24 lines
318 B
JavaScript
Executable File

/**
* @flow
*/
import { StyleSheet } from 'react-native';
const styles = StyleSheet.create({
row: {
flexDirection: 'row',
flexWrap: 'wrap'
},
marginRight: {
marginRight: 10
},
marginBottom: {
marginBottom: 10
},
alignCenter: {
alignItems: 'center'
}
});
export default styles;