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// cSpell: ignore Heade
5
6import { HorizontalBox } from "std-widgets.slint";
7
8export component HeaderBar {
9 min-height: 40px;
10 vertical-stretch: 0;
11
12 Rectangle {
13 HorizontalBox {
14 alignment: start;
15
16 @children
17 }
18 }
19}
20