@sendbird/uikit-react
Version:
Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.
11 lines (10 loc) • 391 B
TypeScript
import { ReactElement } from 'react';
import './index.scss';
import { Colors } from '../../utils/color';
export interface DateSeparatorProps {
children?: string | ReactElement;
className?: string | Array<string>;
separatorColor?: Colors;
}
declare const DateSeparator: ({ children, className, separatorColor, }: DateSeparatorProps) => ReactElement;
export default DateSeparator;