use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn Text(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - Text"</title>
<path d="M15 18H3" />
<path d="M17 6H3" />
<path d="M21 12H3" />
</SvgIcon>
}
}