stream-chat-react
Version:
React components to create chat conversations or livestream style chat
9 lines (8 loc) • 304 B
TypeScript
import type { PropsWithChildren } from 'react';
import React from 'react';
export type CustomNotificationProps = {
type: string;
active?: boolean;
className?: string;
};
export declare const CustomNotification: (props: PropsWithChildren<CustomNotificationProps>) => React.JSX.Element | null;