UNPKG

@etsoo/materialui

Version:

TypeScript Material-UI Implementation

12 lines (11 loc) 363 B
import { TextFieldProps } from "@mui/material/TextField"; /** * Custom attribute area properties */ export type CustomAttributeAreaProps = TextFieldProps & {}; /** * Custom attribute area * @param props Properties * @returns Component */ export declare function CustomAttributeArea(props: CustomAttributeAreaProps): import("react/jsx-runtime").JSX.Element;