use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn Command(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - Command" }
path { d: "M15 6v12a3 3 0 1 0 3-3H6a3 3 0 1 0 3 3V6a3 3 0 1 0-3 3h12a3 3 0 1 0-3-3" }
}
}
}