use leptos::prelude::*;
use crate::_svg_icon::SvgIcon;
#[component]
pub fn TextAlignCenter(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - Text Align Center"</title>
<path d="M3 12h18" />
<path d="M3 18h18" />
<path d="M3 6h18" />
</SvgIcon>
}
}