Function freya_components::CursorArea
source · pub fn CursorArea(_: CursorAreaProps) -> Element
Expand description
CursorArea
component.
Props
See CursorAreaProps
.
Example
fn app() -> Element {
rsx!(
CursorArea {
icon: CursorIcon::Progress,
label {
height: "100%",
width: "100%",
"Loading"
}
}
)
}