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

io.github.palexdev.mfxcomponents.theming.enums.ButtonVariants Maven / Gradle / Ivy

There is a newer version: 11.26.0
Show newest version
package io.github.palexdev.mfxcomponents.theming.enums;

import io.github.palexdev.mfxcomponents.theming.base.Variant;

public enum ButtonVariants implements Variant {
    ELEVATED("elevated"),
    FILLED("filled"),
    FILLED_TONAL("filled-tonal"),
    OUTLINED("outlined"),
    TEXT("text"),
    ;

    private final String styleClass;

    ButtonVariants(String styleClass) {
        this.styleClass = styleClass;
    }

    @Override
    public String variantStyleClass() {
        return styleClass;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy