-1

I don't know how to change the color of the icon of the datePicker. I want to change the color of the icon of datePicker and not from black to white . I want to change it with red color for example

input {
    height: 45px;
    width: auto;
    border-width: 3px;
    border-style: solid;
    border-color: black;
    border-radius: 90px;
    margin: 10px;
    background-color:white;
    cursor: pointer;
}
<input
  type="date"
  [value]="value | date:'yyyy-MM-dd'"
  (change)="dateSelected($event)"
  (blur)="blurred($event)"
/>

0 Answers0