use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn Cylinder(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - Cylinder"</title>
<ellipse cx="12" cy="5" rx="9" ry="3" />
<path d="M3 5v14a9 3 0 0 0 18 0V5" />
</SvgIcon>
}
}