Files
Walleby/Wallet.Avalonia/UnarchiveItemActionView.axaml
T
2024-06-25 23:08:45 +01:00

20 lines
667 B
XML

<UserControl
x:Class="Wallet.Avalonia.UnarchiveItemActionView"
xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:vm="using:Wallet"
x:DataType="vm:UnarchiveItemActionViewModel">
<Button
Width="{StaticResource ButtonWidth}"
Height="{StaticResource ButtonHeight}"
VerticalAlignment="Center"
Command="{Binding InvokeCommand}"
ToolTip.Tip="Restore">
<TextBlock
VerticalAlignment="Center"
FontFamily="{DynamicResource FluentThemeFontFamily}"
FontSize="18"
Text="&#xE075;" />
</Button>
</UserControl>