From 365cb6289e2d4190fec51ce38e76badb7cd79550 Mon Sep 17 00:00:00 2001 From: Nick Seguin Date: Sun, 25 Feb 2024 18:05:49 -0600 Subject: [PATCH] whitespace --- .../HeroIconsSourceGenerator.cs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/NSeguin.Dev.Web.HeroIcons.SourceGenerator/HeroIconsSourceGenerator.cs b/src/NSeguin.Dev.Web.HeroIcons.SourceGenerator/HeroIconsSourceGenerator.cs index d96dd02..d9c66c8 100644 --- a/src/NSeguin.Dev.Web.HeroIcons.SourceGenerator/HeroIconsSourceGenerator.cs +++ b/src/NSeguin.Dev.Web.HeroIcons.SourceGenerator/HeroIconsSourceGenerator.cs @@ -47,17 +47,17 @@ public class HeroIconsSourceGenerator : IIncrementalGenerator public string Code => $$""" - // - namespace NSeguin.Dev.Web.HeroIcons + // + namespace NSeguin.Dev.Web.HeroIcons + { + public partial class HeroIcon { - public partial class HeroIcon - { - /// - /// Gets the for the {{SvgFileName}} icon. - /// - public static readonly HeroIconKind {{PropertyName}} = new HeroIconKind("{{SvgFileName}}"); - } + /// + /// Gets the for the {{SvgFileName}} icon. + /// + public static readonly HeroIconKind {{PropertyName}} = new HeroIconKind("{{SvgFileName}}"); } + } """; private static string ToPascalCase(string value)