stream-chat-react
Version:
React components to create chat conversations or livestream style chat
18 lines • 750 B
TypeScript
import type { PollOption } from 'stream-chat';
type AmountBarProps = {
amount: number;
className?: string;
};
export declare const AmountBar: ({ amount, className }: AmountBarProps) => import("react/jsx-runtime").JSX.Element;
export type CheckmarkProps = {
checked?: boolean;
};
export declare const Checkmark: ({ checked }: CheckmarkProps) => import("react/jsx-runtime").JSX.Element;
export type PollOptionSelectorProps = {
option: PollOption;
displayAvatarCount?: number;
voteCountVerbose?: boolean;
};
export declare const PollOptionSelector: ({ displayAvatarCount, option, voteCountVerbose, }: PollOptionSelectorProps) => import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=PollOptionSelector.d.ts.map