@io-orkes/human-task-material-renderers-react
Version:
`@io-orkes/human-task-material-renderers-react` is a custom library that extends the `@jsonforms/material-renderers` to provide custom renderers for human task forms. This library leverages Material UI components to deliver a seamless and responsive user
15 lines (13 loc) • 525 B
TypeScript
import { default as React } from 'react';
export interface DescriptionTextProps {
id?: string;
value: string;
align?: "left" | "center" | "right" | "justify" | "inherit";
noWrap?: boolean;
preWrap?: boolean;
paragraph?: boolean;
gutterBottom?: boolean;
variant?: "inherit" | "button" | "overline" | "caption" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "subtitle1" | "subtitle2" | "body1" | "body2";
label?: string;
}
export declare const DescriptionText: React.FC<DescriptionTextProps>;