21 lines
349 B
JavaScript
21 lines
349 B
JavaScript
import { atom } from 'recoil'
|
|
|
|
const defaultUtils = {
|
|
text: false,
|
|
dimension: false,
|
|
distance: false,
|
|
}
|
|
|
|
export const dimensionLineSettingsState = atom({
|
|
key: 'dimensionLineSettingsState',
|
|
default: {
|
|
pixel: 1,
|
|
color: '#000000',
|
|
},
|
|
})
|
|
|
|
export const commonUtilsState = atom({
|
|
key: 'commonUtilsState',
|
|
default: defaultUtils,
|
|
})
|