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