* @param icon Name of the Icon without File-Extension
* @param size Size in Pixel
* @return Icon if found, null if no Icon was found
*/
public ImageIcon getIconFromTheme(Plugin plugin, String category, String icon, int size) {
return getIconFromTheme(plugin, new ThemeIcon(category, icon, size));
}