use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn Tablets(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - Tablets"</title>
<circle cx="7" cy="7" r="5" />
<circle cx="17" cy="17" r="5" />
<path d="M12 17h10" />
<path d="m3.46 10.54 7.08-7.08" />
</SvgIcon>
}
}