icons 0.5.1

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

use super::SvgIcon;

#[component]
pub fn FileCog(class: Option<String>) -> Element {
    rsx! {
        SvgIcon { class,
            title { "Rust UI Icons - FileCog" }
            path { d: "M14 2v4a2 2 0 0 0 2 2h4" }
            path { d: "m2.305 15.53.923-.382" }
            path { d: "m3.228 12.852-.924-.383" }
            path { d: "M4.677 21.5a2 2 0 0 0 1.313.5H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2.5" }
            path { d: "m4.852 11.228-.383-.923" }
            path { d: "m4.852 16.772-.383.924" }
            path { d: "m7.148 11.228.383-.923" }
            path { d: "m7.53 17.696-.382-.924" }
            path { d: "m8.772 12.852.923-.383" }
            path { d: "m8.772 15.148.923.383" }
            circle { cx: "6", cy: "14", r: "3" }
        }
    }
}