lucide/packages/dioxus/src/map_pin_plus.rs
Daniëlle Huisman d622319acb Add Dioxus icons
2024-12-08 14:39:21 +01:00

41 lines
1.4 KiB
Rust

use dioxus::prelude::*;
#[derive(Clone, PartialEq, Props)]
pub struct MapPinPlusProps {
#[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>,
}
#[component]
pub fn MapPinPlus(props: MapPinPlusProps) -> 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}" },
"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": "M19.914 11.105A7.298 7.298 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32 32 0 0 0 .824-.738" }
circle { "cx": "12", "cy": "10", "r": "3" }
path { "d": "M16 18h6" }
path { "d": "M19 15v6" }
}
}
}