8 lines
200 B
JavaScript
8 lines
200 B
JavaScript
|
import { commonLight } from "../../_styles/common/index.mjs";
|
||
|
export const self = () => ({});
|
||
|
const equationLight = {
|
||
|
name: 'Equation',
|
||
|
common: commonLight,
|
||
|
self
|
||
|
};
|
||
|
export default equationLight;
|