ratatui_toolkit/primitives/button/methods/
normal.rs

1use ratatui::style::Style;
2
3use crate::primitives::button::Button;
4
5impl Button {
6    /// Returns the normal (non-hovered) style.
7    ///
8    /// # Returns
9    ///
10    /// The style applied when the button is not hovered
11    #[inline]
12    pub fn normal(&self) -> Style {
13        self.normal_style
14    }
15}