> For the complete documentation index, see [llms.txt](https://help.iviva.com/uxp/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.iviva.com/uxp/stable/types/idynamicformprops.md).

# IDynamicFormProps

```tsx
interface IDynamicFormProps {
    formStructure: IDynamicFormFieldProps[],
    onSubmit: (data: { [key: string]: string | number | boolean }) => void
    onCancel?: () => void,
    type?: IFormType
    widget?: IWidgetInstance,
    submitButtonLabel?: string,
    cancelButtonLabel?: string,
    hideCancelButton?: boolean
}
```

## Usage

```tsx
import {IDynamicFormProps} from 'uxp/components';
```
