@paraboly/react-native-card
Version:
Fully customizable Card View for React Native.
33 lines • 857 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports._containerGlue = void 0;
const react_native_1 = require("react-native");
exports._containerGlue = (backgroundColor) => ({
padding: 12,
borderRadius: 12,
backgroundColor: backgroundColor,
});
exports.default = react_native_1.StyleSheet.create({
container: {
marginTop: 10,
marginLeft: 16,
marginRight: 16,
},
shadowStyle: {
shadowRadius: 2,
shadowOpacity: 0.5,
shadowColor: "rgba(0,0,0,0.25)",
shadowOffset: {
width: 2,
height: 1,
},
},
cardTextStyle: {
fontSize: 14,
color: "#505e80",
alignItems: "center",
alignContent: "center",
justifyContent: "center",
},
});
//# sourceMappingURL=SimpleCard.style.js.map