use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn CornerRightDown(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - CornerRightDown"</title>
<path d="m10 15 5 5 5-5" />
<path d="M4 4h7a4 4 0 0 1 4 4v12" />
</SvgIcon>
}
}