icons 0.2.7

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

use super::SvgIcon;

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

            <rect width="18" height="18" x="3" y="3" rx="2" />
            <path d="M7 3v18" />
            <path d="M3 7.5h4" />
            <path d="M3 12h18" />
            <path d="M3 16.5h4" />
            <path d="M17 3v18" />
            <path d="M17 7.5h4" />
            <path d="M17 16.5h4" />
        </SvgIcon>
    }
}