KaesDingeling / Hybrid-Menu

Hybrid-Menu Widget for Vaadin Application
Apache License 2.0
22 stars 13 forks source link

notification missing icon setter #37

Closed fo0 closed 7 years ago

fo0 commented 7 years ago

notification missing icon setter

KaesDingeling commented 7 years ago

Included in version 2.0.10

You can use this in the builder: .withIcon(VaadinIcons.INFO)

NotificationBuilder.get(notiCenter)
    .withCaption("Test")
    .withDescription("description")
    .withPriority(ENotificationPriority.HIGH)
    .withIcon(VaadinIcons.INFO)
    .withCloseButton()
    .build();