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