lucide-dioxus 2.42.0

Dioxus port of Lucide.
Documentation
use dioxus::prelude::*;
#[derive(Clone, PartialEq, Props)]
pub struct GrapeProps {
    #[props(default = 24)]
    pub size: usize,
    #[props(default = "currentColor".to_owned())]
    pub color: String,
    #[props(default = "none".to_owned())]
    pub fill: String,
    #[props(default = 2)]
    pub stroke_width: usize,
    #[props(default = false)]
    pub absolute_stroke_width: bool,
    pub class: Option<String>,
    pub style: Option<String>,
}
#[component]
pub fn Grape(props: GrapeProps) -> Element {
    let stroke_width = if props.absolute_stroke_width {
        props.stroke_width * 24 / props.size
    } else {
        props.stroke_width
    };
    rsx! {
        svg {
            "xmlns": "http://www.w3.org/2000/svg",
            "class": if let Some(class) = props.class { "{class}" },
            "style": if let Some(style) = props.style { "{style}" },
            "width": "{props.size}",
            "height": "{props.size}",
            "viewBox": "0 0 24 24",
            "fill": "{props.fill}",
            "stroke": "{props.color}",
            "stroke-width": "{stroke_width}",
            "stroke-linecap": "round",
            "stroke-linejoin": "round",
            path { "d": "M22 5V2l-5.89 5.89" }
            circle { "cx": "16.6", "cy": "15.89", "r": "3" }
            circle { "cx": "8.11", "cy": "7.4", "r": "3" }
            circle { "cx": "12.35", "cy": "11.65", "r": "3" }
            circle { "cx": "13.91", "cy": "5.85", "r": "3" }
            circle { "cx": "18.15", "cy": "10.09", "r": "3" }
            circle { "cx": "6.56", "cy": "13.2", "r": "3" }
            circle { "cx": "10.8", "cy": "17.44", "r": "3" }
            circle { "cx": "5", "cy": "19", "r": "3" }
        }
    }
}