lucide/packages/dioxus/src/pizza.rs
2025-05-15 18:09:14 +00:00

44 lines
1.5 KiB
Rust

use dioxus::prelude::*;
#[derive(Clone, PartialEq, Props)]
pub struct PizzaProps {
#[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 Pizza(props: PizzaProps) -> 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": "m12 14-1 1" }
path { "d": "m13.75 18.25-1.25 1.42" }
path { "d": "M17.775 5.654a15.68 15.68 0 0 0-12.121 12.12" }
path { "d": "M18.8 9.3a1 1 0 0 0 2.1 7.7" }
path { "d": "M21.964 20.732a1 1 0 0 1-1.232 1.232l-18-5a1 1 0 0 1-.695-1.232A19.68 19.68 0 0 1 15.732 2.037a1 1 0 0 1 1.232.695z" }
}
}
}