import React from "react"; import { Text } from "@mantine/core"; import { TextFieldProps } from "../types"; /** * This field lets you show basic text. It uses Mantine {@link https://mantine.dev/core/text/ ``} component. * * @see {@link https://refine.dev/docs/api-reference/mantine/components/fields/text} for more details. */ export const TextField: React.FC = ({ value, ...rest }) => { return {value}; };