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 arrows using below code.
$('#datetimepicker7').datetimepicker({
sideBySide: true,
icons: {
up: "fa fa-chevron-circle-up",
down: "fa fa-chevron-circle-down",
}
});
May I know how to change the left, right icons of the calendar? For easy understanding I have highlighted the icons to be changes in below image.
Any help would be highly appreciated.