mirror of
https://github.com/danbulant/lucide
synced 2026-06-19 14:31:33 +00:00
43 lines
1.6 KiB
Rust
43 lines
1.6 KiB
Rust
use dioxus::prelude::*;
|
|
#[derive(Clone, PartialEq, Props)]
|
|
pub struct PenToolProps {
|
|
#[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 PenTool(props: PenToolProps) -> 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": "M15.707 21.293a1 1 0 0 1-1.414 0l-1.586-1.586a1 1 0 0 1 0-1.414l5.586-5.586a1 1 0 0 1 1.414 0l1.586 1.586a1 1 0 0 1 0 1.414z" }
|
|
path { "d": "m18 13-1.375-6.874a1 1 0 0 0-.746-.776L3.235 2.028a1 1 0 0 0-1.207 1.207L5.35 15.879a1 1 0 0 0 .776.746L13 18" }
|
|
path { "d": "m2.3 2.3 7.286 7.286" }
|
|
circle { "cx": "11", "cy": "11", "r": "2" }
|
|
}
|
|
}
|
|
}
|