/* * Copyright (c) 2023, Tim Flynn * * SPDX-License-Identifier: BSD-2-Clause */ #include "Icon.h" #include "StringUtils.h" #include namespace Ladybird { QIcon load_icon_from_uri(StringView uri) { auto resource = MUST(Core::Resource::load_from_uri(uri)); auto path = qstring_from_ak_string(resource->filesystem_path()); return QIcon { path }; } }