mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
14 lines
524 B
Plaintext
14 lines
524 B
Plaintext
<RadzenDialog @attributes="Attributes" />
|
|
<RadzenNotification @attributes="Attributes" />
|
|
<RadzenContextMenu @attributes="Attributes" />
|
|
<RadzenTooltip @attributes="Attributes" />
|
|
<RadzenChartTooltip @attributes="Attributes" />
|
|
|
|
@code {
|
|
/// <summary>
|
|
/// Specifies additional custom attributes that will be rendered by the component.
|
|
/// </summary>
|
|
/// <value>The attributes.</value>
|
|
[Parameter(CaptureUnmatchedValues = true)]
|
|
public IReadOnlyDictionary<string, object>? Attributes { get; set; }
|
|
} |