native-base
Version:
Essential cross-platform UI components for React Native
28 lines (25 loc) • 454 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
const baseStyle = props => {
const {
isUnderlined
} = props;
return {
_text: {
textDecorationLine: isUnderlined ? 'underline' : 'none'
},
width: 'auto',
height: 'auto'
};
};
var _default = {
baseStyle,
defaultProps: {
isUnderlined: true
}
};
exports.default = _default;
//# sourceMappingURL=link.js.map
;