use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn Asterisk(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - Asterisk"</title>
<path d="M12 6v12" />
<path d="M17.196 9 6.804 15" />
<path d="m6.804 9 10.392 6" />
</SvgIcon>
}
}