Default
<Breadcrumb Items="@_breadcrumb" />
    
private readonly List<Breadcrumb.BreadcrumbItem> _breadcrumb = new()
{
    new() { Label = "Dashboard", Href = "/dashboard" },
    new() { Label = "Users", Href = "/users" },
    new() { Label = "Admin", Href = "/admin" },
    new() { Label = "Profile Details" }
};    
Color
<Breadcrumb Items="@_breadcrumb" Color="ComponentColor.Primary" />

<Breadcrumb Items="@_breadcrumb" Color="ComponentColor.Secondary" />

<Breadcrumb Items="@_breadcrumb" Color="ComponentColor.Tertiary" />
Variant
<Breadcrumb Items="@_breadcrumb" Variant="ComponentVariant.Link" />
                    
<Breadcrumb Items="@_breadcrumb" Variant="ComponentVariant.Solid" />