use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn Navigation2(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - Navigation2"</title>
<polygon points="12 2 19 21 12 17 5 21 12 2" />
</SvgIcon>
}
}