@coveord/plasma-mantine
Version:
A Plasma flavoured Mantine theme
18 lines (17 loc) • 490 B
JavaScript
/**
* Common default props shared across all layout header components.
*/ export const LAYOUT_HEADER_DEFAULT_PROPS = {
draggable: false,
removable: true
};
/**
* Common default props shared across all layout body components.
* This ensures consistent defaults and reduces duplication.
*/ export const LAYOUT_BODY_DEFAULT_PROPS = {
removable: true,
draggable: false,
disabled: false,
readOnly: false,
gap: 'md'
};
//# sourceMappingURL=layoutConstants.js.map