Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 364 Bytes

README.md

File metadata and controls

14 lines (12 loc) · 364 Bytes

tango-images

Adapters to work with tango-icon-theme

Example of usage:

private class SendAction extends AbstractAction {
        public SendAction() {
            putValue(NAME, "Send");
            putValue(SHORT_DESCRIPTION, "Send message into chat");
            putValue(SMALL_ICON, Tango.small(TangoIconName.mail_send_receive));
        }
...