mirror of
https://github.com/cloud-shuttle/leptos-shadcn-ui.git
synced 2025-12-22 22:00:00 +00:00
11 lines
237 B
Rust
11 lines
237 B
Rust
use yew::prelude::*;
|
|
|
|
use crate::new_york::components::ui::badge::{Badge, BadgeVariant};
|
|
|
|
#[function_component]
|
|
pub fn BadgeSecondary() -> Html {
|
|
html! {
|
|
<Badge variant={BadgeVariant::Secondary}>{"Secondary"}</Badge>
|
|
}
|
|
}
|