Files
formbricks-formbricks/apps/docs/components/mdx-image.tsx
2025-01-09 04:53:10 +00:00

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",
}}
/>
);
}