use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn JapaneseYen(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - JapaneseYen" }
path { d: "M12 9.5V21m0-11.5L6 3m6 6.5L18 3" }
path { d: "M6 15h12" }
path { d: "M6 11h12" }
}
}
}