use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn LogOut(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - LogOut" }
path { d: "m16 17 5-5-5-5" }
path { d: "M21 12H9" }
path { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }
}
}
}