I've tried solution by applying CSS styles to input field but its not working. Can I know is there any other suggested method?
.registration-input-box > input {
    --ion-color-success: transparent;
    -webkit-touch-callout: none;    
    -webkit-user-select: none;
    -ms-touch-callout: none;
    -ms-user-select: none;
    -moz-touch-callout: none;
    -moz-user-select: none;
}
<ion-input type="tel" pattern="[0-9]*" class="registration-input-box"></ion-input>