/
Love Icon for Favorites

Love Icon for Favorites

Replace the "Star" for Favorites with a "Heart" Icon

Source Code (CSS)
.ion-ios-star:before,
.favorite-star:before {
  content: "\f308";
}

.ion-ios-star:before,
.ion-ios-star-outline:before {
  font-size: 1.2em;
}

.favorite-star {
  position: relative;
  color: transparent !important;
}

.favorite-star:before {
  font-family: "Ionicons";
  font-size: 1.6em;
  color: var(--keyColor) !important;
  position: absolute;
}

.ion-ios-star-outline:before {
  content: "\f19b";
}

.selected .favorite-star:before {
  color: var(--textDefault) !important;
}