All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dominokit.domino.ui.style.WaveStyle Maven / Gradle / Ivy

There is a newer version: 1.0.139
Show newest version
package org.dominokit.domino.ui.style;

public enum WaveStyle {

    FLOAT("waves-float"),
    CIRCLE("waves-circle"),
    RIPPLE("waves-ripple"),
    BLOCK("waves-block");

    private final String style;

    WaveStyle(String style) {
        this.style = style;
    }

    public String getStyle() {
        return style;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy