I want to replace a FontAwesome Icon with Google Materials SVG Icon, after a collapsible table button toggle is pressed (goes from down arrow to up arrow). Current Code is this. I cannot get Google Material Icons code working. How would i fix this?
Should work like this, except with Google icons:
https://codepen.io/tofanelli/pen/waadRY
Font Awesome
.card-header .accordion-toggle:after {
font-family: 'Glyphicons Halflings';
content: "\e114";
float: right;
color: grey;
}
.card-header .accordion-toggle.collapsed:after {
content: "\e113";
}
Google Material Icons:
.card-header .accordion-toggle:after .material-icons{
content: "\e5cf";
float: right;
color: grey;
}
etc
Picture example from toggling button:
