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.TimeDate; 8 9 internal sealed class Icons 10 { 11 internal static IconInfo TimeDateExtIcon { get; } = IconHelpers.FromRelativePath("Assets\\TimeDate.svg"); 12 13 internal static IconInfo TimeIcon { get; } = new IconInfo("\uE823"); 14 15 internal static IconInfo CalendarIcon { get; } = new IconInfo("\uE787"); 16 17 internal static IconInfo TimeDateIcon { get; } = new IconInfo("\uEC92"); 18 19 internal static IconInfo ErrorIcon { get; } = IconHelpers.FromRelativePaths("Microsoft.CmdPal.Ext.TimeDate\\Assets\\Warning.light.png", "Microsoft.CmdPal.Ext.TimeDate\\Assets\\Warning.dark.png"); 20 }