ChatDateDivider API
API reference docs for the React ChatDateDivider component. Learn about the props, CSS, and other APIs of this exported module.
Demos
Import
import { ChatDateDivider } from '@mui/x-chat/ChatMessage';
// or
import { ChatDateDivider } from '@mui/x-chat';Learn about the difference by reading this guide on minimizing bundle size.
Props of the native component are also available.
| Name | Type | Default | Description |
|---|---|---|---|
| shouldShowDivider | func | Renders when `message.createdAt` falls on a different UTC calendar day than the previous message's. | Decides whether the divider renders above the message, replacing the built-in rule when provided. Signature: function(params: object, params.message: ChatMessage, params.previousMessage: ChatMessage | null, params.index: number, params.date: Date | null, params.previousDate: Date | null) => boolean
|
The component cannot hold a ref.
Source code
If you did not find the information in this page, consider having a look at the implementation of the component for more detail.