# IFormAlertProps

## Definition

```tsx
export interface IFormAlertProps {
    icon?: IconProp
    title: string | IAlertContent,
    content?: string | IAlertContent,
    formStructure: IAlertFormField[],
    submitButtonTitle?: string,
    cancelButtonTitle?: string,
    hideCancelButton?: boolean
}
```

## Usage

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

## Related Types

* [IAlertContent](https://help.iviva.com/uxp/v5/additional-resources/types/ialertcontent)
* [IAlertFormField](https://help.iviva.com/uxp/v5/additional-resources/types/ialertformfield)
* [DynamicFormFieldProps](https://help.iviva.com/uxp/v5/additional-resources/types/dynamicformfieldprops)
* [FormValue](https://help.iviva.com/uxp/v5/additional-resources/types/formvalue)
* [IFormData](https://help.iviva.com/uxp/v5/additional-resources/types/iformdata)
* [CustomValidateResponse](https://help.iviva.com/uxp/v5/additional-resources/types/customvalidateresponse)
* [FormSectionProps](https://help.iviva.com/uxp/v5/additional-resources/types/formsectionprops)
