use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn ArrowRightFromLine(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - ArrowRightFromLine" }
path { d: "M3 5v14" }
path { d: "M21 12H7" }
path { d: "m15 18 6-6-6-6" }
}
}
}