mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-06 05:40:02 -06:00
16 lines
266 B
TypeScript
16 lines
266 B
TypeScript
import Image, { type ImageProps } from "next/image";
|
|
|
|
export function MdxImage(props: ImageProps) {
|
|
return (
|
|
<Image
|
|
{...props}
|
|
alt={props.alt}
|
|
sizes="100vw"
|
|
style={{
|
|
width: "100%",
|
|
height: "auto",
|
|
}}
|
|
/>
|
|
);
|
|
}
|