use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn GripHorizontal(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - GripHorizontal" }
<circle cx="12" cy="9" r="1" />
<circle cx="19" cy="9" r="1" />
<circle cx="5" cy="9" r="1" />
<circle cx="12" cy="15" r="1" />
<circle cx="19" cy="15" r="1" />
<circle cx="5" cy="15" r="1" />
}
}
}