1// Copyright © SixtyFPS GmbH <info@slint.dev>
2// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial
3
4
5export Btn := Rectangle {
6 min-height: max(32px, l.min-height);
7 l := HorizontalLayout {
8 if (false): button_in_image := Image {
9 width: 24px;
10 }
11 text := Text { }
12 }
13}
14
15export TestCase := Window {
16 x := HorizontalLayout {
17 btn := Btn {}
18 }
19}
20