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.Shell;
 8  
 9  internal sealed class Icons
10  {
11      internal static IconInfo RunV2Icon { get; } = IconHelpers.FromRelativePath("Assets\\Run.svg");
12  
13      internal static IconInfo FolderIcon { get; } = new IconInfo("📁");
14  
15      internal static IconInfo AdminIcon { get; } = new IconInfo("\xE7EF"); // Admin Icon
16  
17      internal static IconInfo UserIcon { get; } = new IconInfo("\xE7EE"); // User Icon
18  }