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