isoflow/src/utils/defaults.ts

15 lines
224 B
TypeScript
Raw Normal View History

2023-07-21 21:26:08 +00:00
import { customVars } from '../styles/theme';
export const GRID_DEFAULTS = {
size: {
x: 51,
y: 51
}
};
2023-07-21 20:29:55 +00:00
export const NODE_DEFAULTS = {
label: '',
2023-07-21 21:26:08 +00:00
labelHeight: 100,
color: customVars.diagramPalette.blue
2023-07-21 20:29:55 +00:00
};