1 | // Copyright © SixtyFPS GmbH <info@slint.dev> |
---|---|
2 | // SPDX-License-Identifier: MIT |
3 | |
4 | import { Theme } from "theme.slint"; |
5 | |
6 | export component Label inherits Text { |
7 | font-family: Theme.font-family; |
8 | font-size: Theme.font-size-regular; |
9 | font-weight: Theme.font-weight-regular; |
10 | color: Theme.foreground; |
11 | } |