import javax.swing.JFrame;
import javax.swing.JLabel;
import com.example.iconlibrary.Icon;
public class MainApp {
public static void main(String[] args) {
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Icon icon = new Icon("home");
JLabel label = new JLabel(icon.getIcon());
frame.getContentPane().add(label);
frame.pack();
frame.setVisible(true);
}
}