1// Copyright © SixtyFPS GmbH <info@slint.dev>
2// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial
3
4global ResizeState {
5 in property <length> handle-size: 10px;
6}
7
8component ResizeHandle {
9 width <=> ResizeState.handle-size;
10}
11
12export component Resizer {
13 ResizeHandle {
14 x: 50px;
15 }
16}