# MessageDeleted

Component to render a deleted message within the [`MessageList`](/chat/docs/sdk/react-native/v5/ui-components/message-list/).
This is the default component provided to the prop [`MessageDeleted`](/chat/docs/sdk/react-native/v5/core-components/channel#messagedeleted/) on the `Channel` component.

## Props

### `date`

DateTime stamp to be shown in footer for deleted message.

| Type   |
| ------ |
| String |

### `groupStyle`

Group styles which is combination of [alignment](/chat/docs/sdk/react-native/v5/contexts/message-context#alignment/) and [`groupStyles`](/chat/docs/sdk/react-native/v5/contexts/message-context#groupstyles/)

for example `left_bottom`, `left_single`, `right_top`

This prop decides the appropriate border radius to apply for deleted message container.

| Type   |
| ------ |
| String |

### `noBorder`

Weather to show the borders for deleted message or not. By default, this value is computed as follow:

```tsx
const noBorder =
  (onlyEmojis && !message.quoted_message) || !!otherAttachments.length;
```

| Type    |
| ------- |
| Boolean |

### `alignment`

<partial id="chat-sdk/react-native/v5/_partials/common-content/contexts/message-context/alignment"></partial>

### `message`

<partial id="chat-sdk/react-native/v5/_partials/common-content/contexts/message-context/message"></partial>


---

This page was last updated at 2026-03-06T17:05:31.683Z.

For the most recent version of this documentation, visit [https://getstream.io/chat/docs/sdk/react-native/v5/ui-components/message-deleted/](https://getstream.io/chat/docs/sdk/react-native/v5/ui-components/message-deleted/).