export const THICKNESS = {
thinLine: 1,
midLine: this.thinLine * 2,
boldLine: this.thinLine * 4
};
Uncaught TypeError: Cannot read property 'thinLine' of undefined
const THICKNESS = {
thinLine: 1,
get midLine() {
return this.thinLine * 2;
},
get boldLine() {
return this.thinLine * 4;
},
};