lucide_dioxus/
lightbulb_off.rs

1use dioxus::prelude::*;
2#[derive(Clone, PartialEq, Props)]
3pub struct LightbulbOffProps {
4    #[props(default = 24)]
5    pub size: usize,
6    #[props(default = "currentColor".to_owned())]
7    pub color: String,
8    #[props(default = "none".to_owned())]
9    pub fill: String,
10    #[props(default = 2)]
11    pub stroke_width: usize,
12    #[props(default = false)]
13    pub absolute_stroke_width: bool,
14    pub class: Option<String>,
15}
16#[component]
17pub fn LightbulbOff(props: LightbulbOffProps) -> Element {
18    let stroke_width = if props.absolute_stroke_width {
19        props.stroke_width * 24 / props.size
20    } else {
21        props.stroke_width
22    };
23    rsx! {
24        svg {
25            "xmlns": "http://www.w3.org/2000/svg",
26            "class": if let Some(class) = props.class { "{class}" },
27            "width": "{props.size}",
28            "height": "{props.size}",
29            "viewBox": "0 0 24 24",
30            "fill": "{props.fill}",
31            "stroke": "{props.color}",
32            "stroke-width": "{stroke_width}",
33            "stroke-linecap": "round",
34            "stroke-linejoin": "round",
35            path { "d": "M16.8 11.2c.8-.9 1.2-2 1.2-3.2a6 6 0 0 0-9.3-5" }
36            path { "d": "m2 2 20 20" }
37            path { "d": "M6.3 6.3a4.67 4.67 0 0 0 1.2 5.2c.7.7 1.3 1.5 1.5 2.5" }
38            path { "d": "M9 18h6" }
39            path { "d": "M10 22h4" }
40        }
41    }
42}