UNPKG

rn-inkpad

Version:

<img src="https://res.cloudinary.com/fercloudinary/image/upload/v1715452841/packages/inkpad-banner_acl0xl.png" />

50 lines (49 loc) 1.24 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.longPressButtonStyles = exports.buttonStyles = exports.fabStyles = void 0; const react_native_1 = require("react-native"); exports.fabStyles = react_native_1.StyleSheet.create({ fab: { borderRadius: 50, justifyContent: 'center', alignItems: 'center', }, btnContainer: { alignItems: 'center', zIndex: 10, }, textContainer: { paddingVertical: 3, paddingHorizontal: 8, marginRight: 5, borderRadius: 10, backgroundColor: 'rgba(255,255,255,0.5)', }, }); exports.buttonStyles = react_native_1.StyleSheet.create({ button: { paddingVertical: 10, paddingHorizontal: 15, justifyContent: 'center', alignItems: 'center', gap: 5, }, text: { fontWeight: '600', }, }); exports.longPressButtonStyles = react_native_1.StyleSheet.create({ button: { overflow: 'hidden', justifyContent: 'center', alignItems: 'center', }, buttonContent: { alignItems: 'center', gap: 5, }, progress: { position: 'absolute', height: '100%', }, });