import React from "react"; import { Image } from "antd"; import { ImageFieldProps } from "../types"; /** * This field is used to display images and uses {@link https://ant.design/components/image/#header ``} from Ant Design. * * @see {@link https://refine.dev/docs/ui-frameworks/antd/components/fields/image} for more details. */ export const ImageField: React.FC = ({ value, imageTitle, ...rest }) => { return ; };