use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn ReceiptTurkishLira(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - ReceiptTurkishLira"</title>
<path d="M10 6.5v11a5.5 5.5 0 0 0 5.5-5.5" />
<path d="m14 8-6 3" />
<path d="M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1z" />
</SvgIcon>
}
}