1// Copyright © SixtyFPS GmbH <info@slint.dev>
2// SPDX-License-Identifier: MIT
3
4import { Theme } from "../theme.slint";
5
6export component BarBackground inherits Rectangle {
7 border-radius: 2px;
8 background: Theme.palette.bar-background-gradient;
9 opacity: 0.25;
10}
11
12export component ChartPattern {
13 in property <int> count;
14
15 HorizontalLayout {
16 spacing: 1px;
17 for _ in count : BarBackground {}
18 }
19}