use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn Info(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - Info"</title>
<circle cx="12" cy="12" r="10" />
<path d="M12 16v-4" />
<path d="M12 8h.01" />
</SvgIcon>
}
}