25 lines
No EOL
666 B
Text
25 lines
No EOL
666 B
Text
@namespace LANCommander.UI.Components
|
|
|
|
<Flex Gap="FlexGap.Middle" Align="FlexAlign.Center">
|
|
@ChildContent
|
|
|
|
<Popover OverlayStyle="max-width: 300px;">
|
|
<ContentTemplate>
|
|
@Description
|
|
</ContentTemplate>
|
|
<ChildContent>
|
|
<Button
|
|
Size="Size"
|
|
Type="ButtonType.Link"
|
|
Icon="@IconType.Outline.QuestionCircle" />
|
|
</ChildContent>
|
|
</Popover>
|
|
</Flex>
|
|
|
|
|
|
|
|
@code {
|
|
[Parameter] public ButtonSize Size { get; set; } = ButtonSize.Small;
|
|
[Parameter] public RenderFragment Description { get; set; }
|
|
[Parameter] public RenderFragment ChildContent { get; set; }
|
|
} |