19 lines
670 B
XML
19 lines
670 B
XML
<UserControl
|
|
x:Class="Bitvault.Avalonia.DismissItemActionView"
|
|
xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<Button
|
|
Width="{StaticResource ButtonWidth}"
|
|
Height="{StaticResource ButtonHeight}"
|
|
VerticalAlignment="Center"
|
|
Foreground="{DynamicResource IconForegroundBrush}"
|
|
ToolTip.Tip="Cancel">
|
|
<TextBlock
|
|
VerticalAlignment="Center"
|
|
FontFamily="{DynamicResource SymbolThemeFontFamily}"
|
|
FontSize="16"
|
|
Foreground="{DynamicResource IconForegroundBrush}"
|
|
Text="󸁞" />
|
|
</Button>
|
|
</UserControl>
|