@hc.ds/mobile
Version:
Healthy Church Design System - HC Mobile
47 lines (45 loc) • 1.01 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.TagTheme = void 0;
var _reactNative = require("react-native");
var _Colors = require("../Colors");
/**
* Theme map
*/
const TagTheme = exports.TagTheme = _reactNative.StyleSheet.create({
common: {
borderRadius: 40,
borderWidth: 0,
paddingTop: 3,
paddingBottom: 4,
paddingHorizontal: 10,
display: 'flex',
alignSelf: 'flex-start',
color: _Colors.Colors.white,
marginBottom: 4
},
closable: {
paddingTop: 1,
paddingBottom: 1
},
textStyles: {
color: _Colors.Colors.white,
fontSize: 12,
verticalAlign: 'middle'
},
primary: {
backgroundColor: _Colors.Colors.primary[100],
borderBlockColor: _Colors.Colors.primary[100]
},
success: {
borderColor: _Colors.Colors.success[100],
backgroundColor: _Colors.Colors.success[100]
},
closeIcon: {
fontSize: 16,
color: _Colors.Colors.white
}
});
//# sourceMappingURL=theme.js.map