mirror of
https://github.com/adoyle0/thaw.git
synced 2025-01-23 22:39:23 -05:00
14 lines
194 B
Rust
14 lines
194 B
Rust
|
use crate::theme::ThemeMethod;
|
||
|
pub struct ButtonTheme {
|
||
|
|
||
|
}
|
||
|
|
||
|
impl ThemeMethod for ButtonTheme {
|
||
|
fn light() -> Self {
|
||
|
Self { }
|
||
|
}
|
||
|
|
||
|
fn dark() -> Self {
|
||
|
Self { }
|
||
|
}
|
||
|
}
|