use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn LetterText(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - LetterText" }
path { d: "M15 12h6" }
path { d: "M15 6h6" }
path { d: "m3 13 3.553-7.724a.5.5 0 0 1 .894 0L11 13" }
path { d: "M3 18h18" }
path { d: "M3.92 11h6.16" }
}
}
}