mirror of
https://github.com/formbricks/formbricks.git
synced 2025-12-30 02:10:12 -06:00
Co-authored-by: Piyush Gupta <piyushguptaa2z123@gmail.com> Co-authored-by: Johannes <72809645+jobenjada@users.noreply.github.com> Co-authored-by: Johannes <johannes@formbricks.com> Co-authored-by: Matti Nannt <mail@matthiasnannt.com>
16 lines
265 B
TypeScript
16 lines
265 B
TypeScript
import Image, { ImageProps } from "next/image";
|
|
|
|
export const MdxImage = (props: ImageProps) => {
|
|
return (
|
|
<Image
|
|
{...props}
|
|
alt={props.alt}
|
|
sizes="100vw"
|
|
style={{
|
|
width: "100%",
|
|
height: "auto",
|
|
}}
|
|
/>
|
|
);
|
|
};
|