Skip to main content

MessageBox

Function MessageBox 

Source
pub fn MessageBox(_: MessageBoxProps) -> Element
Expand description

MessageBox

§Example

use dioxus::prelude::*;

rsx! {
   div {
       MessageBox {
           size: "16px", // The size of the icon: size * size
           color: "black", // The svg fill color
       }
   }
}

§Props

For details, see the props struct definition.

  • size : Option<&'staticstr>
  • color : Option<&'staticstr>