10 lines
367 B
TypeScript
10 lines
367 B
TypeScript
import { WidgetType, WIDGET_DIMENSIONS } from '../constants';
|
|
|
|
export function getDefaultWidth(type: string): number {
|
|
return WIDGET_DIMENSIONS[type as WidgetType]?.width || WIDGET_DIMENSIONS.DEFAULT.width;
|
|
}
|
|
|
|
export function getDefaultHeight(type: string): number {
|
|
return WIDGET_DIMENSIONS[type as WidgetType]?.height || WIDGET_DIMENSIONS.DEFAULT.height;
|
|
}
|