@paraboly/react-native-bouncy-circle-button
Version:
Fully customizable bouncy animated circle button for React Native by Paraboly
25 lines • 668 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports._container = void 0;
const react_native_1 = require("react-native");
exports._container = (size, backgroundColor) => ({
width: size,
height: size,
borderRadius: size / 2,
backgroundColor,
alignItems: "center",
justifyContent: "center",
});
exports.default = react_native_1.StyleSheet.create({
container: {},
shadowStyle: {
shadowRadius: 8,
shadowOpacity: 0.3,
shadowColor: "#757575",
shadowOffset: {
width: 0,
height: 3,
},
},
});
//# sourceMappingURL=BouncyCircleButton.style.js.map