My current theme is Redmond, but I would like to change the color of the home icon in the breadcrumb.
To achieve this, I have included the hot-sneaks theme in the pom.xml file:
<dependency>
<groupId>org.primefaces.themes</groupId>
<artifactId>hot-sneaks</artifactId>
<version>1.0.10</version>
<scope>compile</scope>
</dependency>
Now, my question is how can I update the home icon in DefaultMenuItem?
private void createHomeMenu() {
// Create home menuItem
DefaultMenuItem home = new DefaultMenuItem();
home.setIcon( ?? );
home.setAjax(true);
breadCrumbModel.addElement(home);
}
Any suggestions on how to change the home icon are greatly appreciated. Thanks!