mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-05-20 02:32:15 +00:00
21 lines
511 B
C#
21 lines
511 B
C#
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace AIStudio.Components;
|
|
|
|
public partial class ConfigInfoRow : ComponentBase
|
|
{
|
|
[Parameter]
|
|
public string Icon { get; set; } = Icons.Material.Filled.ArrowRightAlt;
|
|
|
|
[Parameter]
|
|
public string Text { get; set; } = string.Empty;
|
|
|
|
[Parameter]
|
|
public string CopyValue { get; set; } = string.Empty;
|
|
|
|
[Parameter]
|
|
public string CopyTooltip { get; set; } = string.Empty;
|
|
|
|
[Parameter]
|
|
public string Style { get; set; } = string.Empty;
|
|
} |