1 | // Copyright © SixtyFPS GmbH <info@slint.dev> |
---|---|
2 | // SPDX-License-Identifier: MIT |
3 | |
4 | import { Theme } from "../theme.slint"; |
5 | |
6 | export component MenuBackground inherits Rectangle { |
7 | border-radius: 4px; |
8 | background: Theme.palette.ebony-radial-gradient; |
9 | clip: true; |
10 | } |