mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
14 lines
375 B
Plaintext
14 lines
375 B
Plaintext
@using Radzen.Blazor.Rendering
|
|
|
|
@if (Visible)
|
|
{
|
|
@if (Template == null)
|
|
{
|
|
<EditorButton Title=@Title Click=@OnClick Icon=@Icon IconColor="@IconColor" Selected=@Selected Disabled=@Disabled EnabledModes="@EnabledModes"/>
|
|
}
|
|
else if (Editor != null && Template != null)
|
|
{
|
|
<div class="rz-html-editor-custom-tool">@Template(Editor)</div>
|
|
}
|
|
}
|