use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn TurkishLira(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - TurkishLira" }
path { d: "M15 4 5 9" }
path { d: "m15 8.5-10 5" }
path { d: "M18 12a9 9 0 0 1-9 9V3" }
}
}
}