use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn Gavel(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - Gavel" }
path { d: "m14.499 12.501-8.88 8.879a1 1 0 0 1-3.001-3L11.5 9.5" }
path { d: "m16 16 6-6" }
path { d: "m21 11-8-8" }
path { d: "m8 8 6-6" }
path { d: "m9 7 8 8" }
}
}
}