import React from "react"; import { Image, ImageProps } from "antd"; import { FieldProps } from "../../../interfaces"; export type ImageFieldProps = FieldProps & ImageProps & { imageTitle?: string; }; /** * 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/api-references/components/fields/image} for more details. */ export const ImageField: React.FC = ({ value, imageTitle, ...rest }) => { return ; };