use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn TurkishLira(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - TurkishLira"</title>
<path d="M15 4 5 9" />
<path d="m15 8.5-10 5" />
<path d="M18 12a9 9 0 0 1-9 9V3" />
</SvgIcon>
}
}