@cobuildlab/8base-chat
Version:
Chat component that uses 8base
14 lines (13 loc) • 397 B
TypeScript
import React from 'react';
export interface IDotIndicatorProps extends React.HTMLAttributes<HTMLDivElement> {
color?: 'primary';
size?: 'md';
}
declare function DotIndicator({ color, className, size, ...domAttrs }: IDotIndicatorProps): JSX.Element;
declare namespace DotIndicator {
var defaultProps: {
color: string;
size: string;
};
}
export default DotIndicator;