Table of Contents

Class ActionItem

Namespace
Htmx.Components.Models
Assembly
Htmx.Components.dll

A basic implementation of an action item with label, icon, and CSS class properties. This class provides the fundamental display properties for actionable UI elements.

public class ActionItem : IActionItem
Inheritance
ActionItem
Implements
Derived
Inherited Members
Extension Methods

Properties

CssClass

Gets or sets the CSS class to apply to the action item for styling.

public string? CssClass { get; set; }

Property Value

string

Icon

Gets or sets the CSS icon class for the action item.

public string? Icon { get; set; }

Property Value

string

Label

Gets or sets the display text for the action item.

public string Label { get; set; }

Property Value

string