react-native-social-login-module
Version:
React Native social login
30 lines • 780 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports._container = exports._shadowStyle = void 0;
const react_native_1 = require("react-native");
exports._shadowStyle = (shadowColor) => ({
shadowRadius: 8,
shadowOpacity: 0.3,
shadowColor,
shadowOffset: {
width: 0,
height: 3,
},
});
exports._container = (width, height, backgroundColor) => ({
width,
height,
backgroundColor,
marginLeft: "auto",
alignItems: "center",
justifyContent: "center",
borderTopLeftRadius: 16,
borderBottomLeftRadius: 16,
});
exports.default = react_native_1.StyleSheet.create({
buttonTextStyle: {
fontSize: 28,
color: "#fdfdfd",
},
});
//# sourceMappingURL=SocialButton.style.js.map