Files
ClaudeDo/src/ClaudeDo.Ui/Views/Controls/InheritedBadge.axaml
2026-06-04 12:29:15 +02:00

14 lines
643 B
XML

<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="ClaudeDo.Ui.Views.Controls.InheritedBadge"
x:Name="Root">
<Border Background="{DynamicResource Surface3Brush}"
CornerRadius="4" Padding="6,1"
IsVisible="{Binding #Root.BadgeText, Converter={x:Static StringConverters.IsNotNullOrEmpty}}"
VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock FontSize="11"
Foreground="{DynamicResource TextMuteBrush}"
Text="{Binding #Root.BadgeText}"/>
</Border>
</UserControl>