@namespace Connected.Components
@inherits Tabs
@{
base.BuildRenderTree(__builder);
}
@code {
protected override void OnInitialized()
{
base.Header = (context) =>
@:@{
if (string.IsNullOrEmpty(AddIconToolTip) == false)
{
}
else
{
}
}
;
base.TabPanelHeader = (context) =>
@:@{
if (string.IsNullOrEmpty(CloseIconToolTip) == false)
{
}
else
{
}
}
;
}
}