io.github.palexdev.mfxcomponents.theming.enums.IconButtonVariants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of materialfx-all Show documentation
Show all versions of materialfx-all Show documentation
Material Design/Modern components for JavaFX, now packed as a single Jar
The newest version!
package io.github.palexdev.mfxcomponents.theming.enums;
import io.github.palexdev.mfxcomponents.controls.buttons.MFXIconButton;
import io.github.palexdev.mfxcomponents.theming.base.Variant;
/**
* Enumerator implementing {@link Variant} to define the variants of {@link MFXIconButton}.
*/
public enum IconButtonVariants implements Variant {
FILLED("filled"),
FILLED_TONAL("filled-tonal"),
OUTLINED("outlined"),
;
private final String styleClass;
IconButtonVariants(String styleClass) {
this.styleClass = styleClass;
}
@Override
public String variantStyleClass() {
return styleClass;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy