I am using Bootstrap datetimepicker https://eonasdan.github.io/bootstrap-datetimepicker/
As mentioned in the document I was successfully able to change the up, down
You just have to insert previous and next keys in your icons object in the configuration as stated in the docs.
$('#datetimepicker7').datetimepicker({
sideBySide: true,
icons: {
up: "fa fa-chevron-circle-up",
down: "fa fa-chevron-circle-down",
next: 'fa fa-chevron-circle-right',
previous: 'fa fa-chevron-circle-left'
}
});