mirror of
https://github.com/vercel/commerce.git
synced 2025-04-28 05:47:50 +00:00
9 lines
195 B
TypeScript
9 lines
195 B
TypeScript
import { ImageSource } from "../store/types";
|
|
|
|
export const getImageUrl = (source: ImageSource): string => {
|
|
if (source.type === "remote") {
|
|
return source.url;
|
|
}
|
|
return source.path;
|
|
};
|