icons 0.2.7

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

use super::SvgIcon;

#[component]
pub fn Grip(class: Option<String>) -> Element {
    rsx! {
        SvgIcon { class,
            title { "Rust UI Icons - Grip" }
            circle { cx: "12", cy: "5", r: "1" }
            circle { cx: "19", cy: "5", r: "1" }
            circle { cx: "5", cy: "5", r: "1" }
            circle { cx: "12", cy: "12", r: "1" }
            circle { cx: "19", cy: "12", r: "1" }
            circle { cx: "5", cy: "12", r: "1" }
            circle { cx: "12", cy: "19", r: "1" }
            circle { cx: "19", cy: "19", r: "1" }
            circle { cx: "5", cy: "19", r: "1" }
        }
    }
}