use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn Bandage(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - Bandage" }
path { d: "M10 10.01h.01" }
path { d: "M10 14.01h.01" }
path { d: "M14 10.01h.01" }
path { d: "M14 14.01h.01" }
path { d: "M18 6v11.5" }
path { d: "M6 6v12" }
rect { width: "20", height: "12", x: "2", y: "6", rx: "2" }
}
}
}