import React from "react";
import { Typography } from "antd";
const { Link } = Typography;
import { EmailFieldProps } from "../types";
/**
* This field is used to display email values. It uses the {@link https://ant.design/components/typography/#FAQ ``} component
* of {@link https://ant.design/components/typography ``} from Ant Design.
*
* @see {@link https://refine.dev/docs/ui-frameworks/antd/components/fields/email} for more details.
*/
export const EmailField: React.FC = ({ value, ...rest }) => {
return (
{value}
);
};