mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-05 16:19:55 -06:00
7 lines
171 B
TypeScript
7 lines
171 B
TypeScript
import Image, { ImageProps } from "next/image";
|
|
import React from "react";
|
|
|
|
export function MdxImage(props: ImageProps) {
|
|
return <Image {...props} alt={props.alt} />;
|
|
}
|