thaw/src/button/theme.rs

14 lines
194 B
Rust
Raw Normal View History

2023-03-31 13:02:44 +08:00
use crate::theme::ThemeMethod;
pub struct ButtonTheme {
}
impl ThemeMethod for ButtonTheme {
fn light() -> Self {
Self { }
}
fn dark() -> Self {
Self { }
}
}