Vitron-Front/app/utils/imageUrl.ts
2026-04-29 01:44:16 +03:30

9 lines
221 B
TypeScript

export function getResizedImage(
path: string | undefined | null,
options: { width: number; height: number }
) {
const { width, height } = options;
return path ? `${path}?width=${width}&height=${height}` : "";
}