import { EventImageCropTypes, HideType } from "../../../../types/types";
import * as React from "react";
import { Typography } from "@mui/material";
import EventImage from "../../atoms/EventImage";
import { Box } from "@mui/system";
import Truncate from "../../atoms/Truncate";
interface Props {
photoUrl: string;
title: string;
hideimages?: HideType;
photoCrop?: EventImageCropTypes;
description: string;
hidedescription?: HideType;
truncatedescription?: string | null;
readMore?: string;
}
const InlineImage = (props: Props) => {
const {
photoUrl,
title,
hideimages,
photoCrop,
description,
hidedescription,
truncatedescription,
readMore,
} = props;
return (
<>
{/* clear fix */}
>
);
};
export default InlineImage;