use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn Dock(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - Dock" }
path { d: "M2 8h20" }
rect { width: "20", height: "16", x: "2", y: "4", rx: "2" }
path { d: "M6 16h12" }
}
}
}