use leptos::prelude::*;
use crate::_svg_icon::SvgIcon;
#[component]
pub fn Menu(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - Menu"</title>
<line x1="4" x2="20" y1="12" y2="12" />
<line x1="4" x2="20" y1="6" y2="6" />
<line x1="4" x2="20" y1="18" y2="18" />
</SvgIcon>
}
}