Files
dashboard/ui/components/text_icon_button.slint
2026-08-06 22:37:53 +02:00

25 lines
497 B
Plaintext

// Copyright © SixtyFPS GmbH <info@slint.dev>
// SPDX-License-Identifier: MIT
import {
IconButton,
MaterialText
} from "../material.slint";
export component TextIconButton {
in property <image> icon <=> button.icon;
in property <string> text <=> label.text;
VerticalLayout {
HorizontalLayout {
alignment: center;
button := IconButton {}
}
label := MaterialText {
horizontal_alignment: center;
}
}
}