react-native-rounded-checkbox
Version:
Rounded Checkbox with animated and fully customizable options library for React Native
35 lines • 1 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports._textColorStyle = exports._innerBorderWidthStyle = exports._outerBorderWithStyle = void 0;
const react_native_1 = require("react-native");
exports._outerBorderWithStyle = (borderWidth) => ({
borderWidth: borderWidth,
});
exports._innerBorderWidthStyle = (backgroundColor) => ({
backgroundColor: backgroundColor,
});
exports._textColorStyle = (color) => ({
color: color,
});
exports.default = react_native_1.StyleSheet.create({
outerContainer: {
width: 50,
height: 50,
borderRadius: 25,
borderColor: "#eee",
alignItems: "center",
justifyContent: "center",
},
innerContainer: {
width: 40,
height: 40,
borderRadius: 40 / 2,
alignItems: "center",
justifyContent: "center",
},
textStyle: {
fontSize: 12,
fontWeight: "bold",
},
});
//# sourceMappingURL=RoundedCheckbox.style.js.map