icons 0.2.7

Icons for Rust fullstack applications — Leptos and Dioxus.
Documentation
use leptos::prelude::*;

use super::SvgIcon;

#[component]
pub fn BotMessageSquare(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
    view! {
        <SvgIcon class=class>
            <title>"Rust UI Icons - BotMessageSquare"</title>

            <path d="M12 6V2H8" />
            <path d="m8 18-4 4V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2Z" />
            <path d="M2 12h2" />
            <path d="M9 11v2" />
            <path d="M15 11v2" />
            <path d="M20 12h2" />
        </SvgIcon>
    }
}