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)