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