15 lines
300 B
Plaintext
15 lines
300 B
Plaintext
import { HorizontalBox, Palette } from "std-widgets.slint";
|
|
|
|
export component Header inherits Rectangle {
|
|
width: 100%;
|
|
height: 48px;
|
|
background: Palette.alternate-background;
|
|
|
|
HorizontalBox {
|
|
height: parent.height;
|
|
Text {
|
|
text: "immich";
|
|
}
|
|
}
|
|
}
|