@platformbuilders/react-native-ui
Version:
Platform Builders Shared Components Library
14 lines • 430 B
JavaScript
import styled from 'styled-components/native';
import DefaultCheckbox from 'react-native-check-box';
import { colors } from '../../theme';
export const Wrapper = styled.View ``;
export const defaultLabelStyle = {
fontSize: 16,
color: colors.primary.contrast,
opacity: 0.7,
};
export const containerStyle = {
marginBottom: 0,
};
export const CheckBox = styled(DefaultCheckbox) ``;
//# sourceMappingURL=styles.js.map