use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn Search(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - Search"</title>
<path d="m21 21-4.34-4.34" />
<circle cx="11" cy="11" r="8" />
</SvgIcon>
}
}