Skip to content
Snippets Groups Projects
IngredientSearchResultLabel.java 371 B
Newer Older
package mi.hdm.components;

import javafx.scene.Cursor;
import javafx.scene.control.Label;
import mi.hdm.recipes.RecipeComponent;

public class IngredientSearchResultLabel extends Label {
    public IngredientSearchResultLabel(RecipeComponent component) {
        super(component.getName());
        setStyle("-fx-padding: 4px;");