| 1 | // Copyright © SixtyFPS GmbH <info@slint.dev> |
| 2 | // SPDX-License-Identifier: MIT |
| 3 | |
| 4 | export global Icons { |
| 5 | out property <image> arrow-up: @image-url("assets/arrow-up.svg" ); |
| 6 | out property <image> arrow-left: @image-url("assets/arrow-left.svg" ); |
| 7 | out property <image> arrow-right: @image-url("assets/arrow-right.svg" ); |
| 8 | out property <image> chevron-left: @image-url("assets/chevron-left.svg" ); |
| 9 | out property <image> arrow-circle-o-left: @image-url("assets/arrow-circle-o-left.svg" ); |
| 10 | out property <image> globe: @image-url("assets/globe.svg" ); |
| 11 | out property <image> expand-more: @image-url("assets/expand-more.svg" ); |
| 12 | } |
| 13 | |