use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn GitCommitVertical(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - GitCommitVertical" }
path { d: "M12 3v6" }
circle { cx: "12", cy: "12", r: "3" }
path { d: "M12 15v6" }
}
}
}