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

com.github.mvysny.kaributesting.v10.Icon.kt Maven / Gradle / Ivy

There is a newer version: 2.1.8
Show newest version
package com.github.mvysny.kaributesting.v10

import com.github.mvysny.kaributools.IconName
import com.github.mvysny.kaributools.iconName
import com.vaadin.flow.component.Component
import com.vaadin.flow.component.button.Button
import com.vaadin.flow.component.icon.Icon

/**
 * Returns the icon of this component. Only works with [Button] and [Icon], returns
 * null for everything else.
 */
public val Component._iconName: IconName? get() = when {
    this is Button -> icon?._iconName
    this is Icon -> iconName
    else -> null
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy