# ComponentRendererProps

## Definition

```tsx
interface ComponentRendererProps {
    moduleId: string;
    componentId: string;
    type: ComponentType;
    additionalProps?: any;
    notFoundMessage?: string | React.ReactNode;
    isPreview?: boolean;
}
```

## Usage

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

## Related Types

* [ComponentType](https://help.iviva.com/uxp/v5/additional-resources/types/componenttype)
