pub fn Rate(props: RateProps) -> Element
Rate component for star ratings
rsx! { Rate { model_value: 3.5, allow_half: true, max: 5, on_change: move |v| println!("Rating: {}", v), } }