12 lines
333 B
JavaScript
12 lines
333 B
JavaScript
import { scrollbarDark } from "../../_internal/scrollbar/styles/index.mjs";
|
|
import { commonDark } from "../../_styles/common/index.mjs";
|
|
import { self } from "./light.mjs";
|
|
const notificationDark = {
|
|
name: 'Notification',
|
|
common: commonDark,
|
|
peers: {
|
|
Scrollbar: scrollbarDark
|
|
},
|
|
self
|
|
};
|
|
export default notificationDark; |