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.WindowsTerminal;
 8  
 9  internal static class Icons
10  {
11      internal static IconInfo TerminalIcon { get; } = IconHelpers.FromRelativePath("Assets\\WindowsTerminal.svg");
12  
13      internal static IconInfo AdminIcon { get; } = new IconInfo("\xE7EF"); // Admin icon
14  
15      internal static IconInfo FilterIcon { get; } = new IconInfo("\uE71C"); // Funnel icon
16  }