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