use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn FileSpreadsheet(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - FileSpreadsheet" }
path { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }
path { d: "M14 2v4a2 2 0 0 0 2 2h4" }
path { d: "M8 13h2" }
path { d: "M14 13h2" }
path { d: "M8 17h2" }
path { d: "M14 17h2" }
}
}
}