thaw/src/button/theme.rs
2023-03-31 13:02:44 +08:00

14 lines
No EOL
194 B
Rust

use crate::theme::ThemeMethod;
pub struct ButtonTheme {
}
impl ThemeMethod for ButtonTheme {
fn light() -> Self {
Self { }
}
fn dark() -> Self {
Self { }
}
}