stream-chat-react
Version:
React components to create chat conversations or livestream style chat
6 lines • 302 B
TypeScript
import type { ComponentProps } from 'react';
export type PlayButtonProps = ComponentProps<'button'> & {
isPlaying: boolean;
};
export declare const PlayButton: ({ className, isPlaying, ...props }: PlayButtonProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=PlayButton.d.ts.map