2024-01-29 09:26:07 +08:00
|
|
|
import { commonDark } from "../../_styles/common/index.mjs";
|
|
|
|
import { buttonDark } from "../../button/styles/index.mjs";
|
2024-08-02 18:19:39 +08:00
|
|
|
import { self } from "./light.mjs";
|
2024-01-29 09:26:07 +08:00
|
|
|
const calendarDark = {
|
|
|
|
name: 'Calendar',
|
|
|
|
common: commonDark,
|
|
|
|
peers: {
|
|
|
|
Button: buttonDark
|
|
|
|
},
|
|
|
|
self
|
|
|
|
};
|
|
|
|
export default calendarDark;
|