8 lines
197 B
JavaScript
8 lines
197 B
JavaScript
|
import { commonDark } from "../../_styles/common/index.mjs";
|
||
|
import { self } from "./light.mjs";
|
||
|
const messageDark = {
|
||
|
name: 'Message',
|
||
|
common: commonDark,
|
||
|
self
|
||
|
};
|
||
|
export default messageDark;
|