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