slint/examples/carousel/ui/label.slint
Florian Blasius 520df46998
Update examples to new syntax (#2067)
* run slint-updater on examples
* manual syntax updates
2023-01-16 12:11:25 +00:00

11 lines
No EOL
350 B
Text

// Copyright © SixtyFPS GmbH <info@slint-ui.com>
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial
import { Theme } from "theme.slint";
export component Label inherits Text {
font-family: Theme.font-family;
font-size: Theme.font-size-regular;
font-weight: Theme.font-weight-regular;
color: Theme.foreground;
}