14 lines
262 B
JavaScript
14 lines
262 B
JavaScript
import { atom } from 'recoil'
|
|
|
|
export const dimensionLineSettingsState = atom({
|
|
key: 'dimensionLineSettingsState',
|
|
default: {
|
|
pixel: 1,
|
|
color: '#000000',
|
|
font: 'Arial',
|
|
fontColor: '#000000',
|
|
fontSize: 15,
|
|
fontStyle: 'normal',
|
|
},
|
|
})
|