use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn Touchpad(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - Touchpad"</title>
<rect width="20" height="16" x="2" y="4" rx="2" />
<path d="M2 14h20" />
<path d="M12 20v-6" />
</SvgIcon>
}
}