mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-04 09:29:42 -06:00
7 lines
175 B
TypeScript
7 lines
175 B
TypeScript
import Image, { ImageProps } from "next/image";
|
|
import React from "react";
|
|
|
|
export const MdxImage = (props: ImageProps) => {
|
|
return <Image {...props} alt={props.alt} />;
|
|
};
|