use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn SeparatorVertical(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - SeparatorVertical" }
path { d: "M12 3v18" }
path { d: "m16 16 4-4-4-4" }
path { d: "m8 8-4 4 4 4" }
}
}
}