Skip to main content

euv_ui/component/button/view/
enum.rs

1/// The visual variant of the `euv_button` component.
2#[derive(Clone, Copy, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)]
3pub enum EuvButtonVariant {
4    /// A solid button with accent background and contrasting text.
5    #[default]
6    Primary,
7    /// An outline button with transparent background and accent border.
8    Outline,
9}