mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-27 13:54:11 +00:00

* [autofix.ci] apply automated fixes * Update demos/usecases/esp-idf/README.md Co-authored-by: Olivier Goffart <olivier.goffart@slint.dev> * Update demos/usecases/esp-idf/rust-toolchain.toml Co-authored-by: Olivier Goffart <olivier.goffart@slint.dev> --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Olivier Goffart <olivier.goffart@slint.dev>
12 lines
634 B
Text
12 lines
634 B
Text
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
export global Icons {
|
|
out property <image> arrow-up: @image-url("assets/arrow-up.svg");
|
|
out property <image> arrow-left: @image-url("assets/arrow-left.svg");
|
|
out property <image> arrow-right: @image-url("assets/arrow-right.svg");
|
|
out property <image> chevron-left: @image-url("assets/chevron-left.svg");
|
|
out property <image> arrow-circle-o-left: @image-url("assets/arrow-circle-o-left.svg");
|
|
out property <image> globe: @image-url("assets/globe.svg");
|
|
out property <image> expand-more: @image-url("assets/expand-more.svg");
|
|
}
|