use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn FishSymbol(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - FishSymbol"</title>
<path d="M2 16s9-15 20-4C11 23 2 8 2 8" />
</SvgIcon>
}
}