use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn TvMinimal(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - TvMinimal"</title>
<path d="M7 21h10" />
<rect width="20" height="14" x="2" y="3" rx="2" />
</SvgIcon>
}
}