// Copyright © SixtyFPS GmbH // SPDX-License-Identifier: MIT import { Theme } from "../theme.slint"; export component GroupBox { in property title <=> i-title.text; in property spacing; layout := VerticalLayout { spacing: Theme.spaces.medium; i-title := Text { horizontal-alignment: left; color: Theme.palette.white; font-size: Theme.typo.header.size; font-weight: Theme.typo.header.weight; } i-layout := HorizontalLayout { spacing: root.spacing; @children } } }