@etsoo/materialui
Version:
TypeScript Material-UI Implementation
12 lines (11 loc) • 363 B
TypeScript
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;