use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn Bed(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - Bed" }
path { d: "M2 4v16" }
path { d: "M2 8h18a2 2 0 0 1 2 2v10" }
path { d: "M2 17h20" }
path { d: "M6 8v9" }
}
}
}