import React from "react"; import { Typography } from "antd"; const { Text } = Typography; import { TextFieldProps } from "../types"; /** * This field lets you show basic text. It uses Ant Design's {@link https://ant.design/components/typography/#Typography.Text ``} component. * * @see {@link https://refine.dev/docs/ui-frameworks/antd/components/fields/text} for more details. */ export const TextField: React.FC = ({ value, ...rest }) => { return {value}; };