Kentico.Xperience.ComponentIcons 1.0.0

Prefix Reserved
dotnet add package Kentico.Xperience.ComponentIcons --version 1.0.0
                    
NuGet\Install-Package Kentico.Xperience.ComponentIcons -Version 1.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Kentico.Xperience.ComponentIcons" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Kentico.Xperience.ComponentIcons" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Kentico.Xperience.ComponentIcons" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Kentico.Xperience.ComponentIcons --version 1.0.0
                    
#r "nuget: Kentico.Xperience.ComponentIcons, 1.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Kentico.Xperience.ComponentIcons@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Kentico.Xperience.ComponentIcons&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Kentico.Xperience.ComponentIcons&version=1.0.0
                    
Install as a Cake Tool

Xperience by Kentico Componennt Icons

Kentico Labs CI: Build and Test

Kentico.Xperience.ComponentIcons - NuGet Package

Description

A pre-packaged, annotated list of all icons used in Xperience by Kentico Page, Email, and Form Builder components. Great for AI agents building Xperience components!

The icon list is a C# class with doc comments on every icon that clearly describe what the icon looks like. This helps AI agents (and human developers) understand what the icon "looks like".

public static class KenticoIcons
{
    /// <summary>
    /// Lowercase letter "a" in a simple font.
    /// </summary>
    public const string A_LOWERCASE = "icon-a-lowercase";
    /// <summary>
    /// Three horizontal lines with a bordered rectangle above.
    /// </summary>
    public const string ACCORDION = "icon-accordion";
    /// <summary>
    /// Puzzle piece with a plus sign circle badge.
    /// </summary>
    public const string ADD_MODULE = "icon-add-module";
    /// <summary>
    /// Simplified robot figure with antennae and rounded limbs.
    /// </summary>
    public const string ANDROID = "icon-android";
    /// <summary>
    /// Stylized apple with a leaf and a bite taken out
    /// </summary>
    public const string APPLE = "icon-apple";
    // ...
}

You can read about the inspiration for this library in the article Smarter Components: Using Icon Metadata to Guide AI in Kentico Projects.

Requirements

Library Version Matrix

This project has no dependencies and will work with any version of Xperience by Kentico.

Dependencies

Package Installation

Add the package to any project with component registration attributes, using the .NET CLI.

dotnet add package Kentico.Xperience.ComponentIcons

Quick Start

egister the library's services in your ASP.NET Core application:

// FAQWidget.cs

using Kentico.Content.Web.Mvc;
using Kentico.PageBuilder.Web.Mvc;
using Kentico.Xperience.Admin.Base.FormAnnotations;
using Kentico.Xperience.Admin.Base.Forms;
using Kentico.Xperience.ComponentIcons;

[assembly: RegisterWidget(
    identifier: FAQWidget.IDENTIFIER,
    viewComponentType: typeof(FAQWidget),
    name: FAQWidget.NAME,
    propertiesType: typeof(FAQWidgetProperties),
    Description = "Displays FAQ items in an expandable accordion format",
    IconClass = KenticoIcons.CHECKLIST,
    AllowCache = true)]

namespace App.Components.PageBuilder.Widgets.FAQ;

public class FAQWidget : ViewComponent
{
  // ...
}

Every icon field in KenticoIcons is annotated with a comment describing the visual appearance of the icon. This means you can use an AI agent to select icons for each Widget, Section, etc... in your project by having it analyze the KenticoIcons class.

Full Instructions

View the Usage Guide for more detailed instructions.

Contributing

To see the guidelines for Contributing to Kentico open source software, please see Kentico's CONTRIBUTING.md for more information and follow the Kentico's CODE_OF_CONDUCT.

Instructions and technical details for contributing to this project can be found in Contributing Setup.

License

Distributed under the MIT License. See LICENSE.md for more information.

Support

Kentico Labs

This project has Kentico Labs limited support.

See SUPPORT.md for more information.

For any security issues see SECURITY.md.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net10.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0 70 3/9/2026
1.0.0-prerelease-1 65 3/9/2026