use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn Power(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - Power"</title>
<path d="M12 2v10" />
<path d="M18.4 6.6a9 9 0 1 1-12.77.04" />
</SvgIcon>
}
}