Icons.cs
1 // Copyright (c) Microsoft Corporation 2 // The Microsoft Corporation licenses this file to you under the MIT license. 3 // See the LICENSE file in the project root for more information. 4 5 using Microsoft.CommandPalette.Extensions.Toolkit; 6 7 namespace Microsoft.CmdPal.Ext.System; 8 9 internal sealed class Icons 10 { 11 internal static IconInfo FirmwareSettingsIcon { get; } = new IconInfo("\uE950"); 12 13 internal static IconInfo LockIcon { get; } = new IconInfo("\uE72E"); 14 15 internal static IconInfo LogoffIcon { get; } = new IconInfo("\uF3B1"); 16 17 internal static IconInfo NetworkAdapterIcon { get; } = new IconInfo("\uEDA3"); 18 19 internal static IconInfo RecycleBinIcon { get; } = new IconInfo("\uE74D"); 20 21 internal static IconInfo RestartIcon { get; } = new IconInfo("\uE777"); 22 23 internal static IconInfo RestartShellIcon { get; } = new IconInfo("\uEC50"); 24 25 internal static IconInfo ShutdownIcon { get; } = new IconInfo("\uE7E8"); 26 27 internal static IconInfo SleepIcon { get; } = new IconInfo("\uE708"); 28 }