use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn Blend(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - Blend"</title>
<circle cx="9" cy="9" r="7" />
<circle cx="15" cy="15" r="7" />
</SvgIcon>
}
}