fomantic-ui-react
Version:
Fomantic-UI React -- A React Component Library.
40 lines (39 loc) • 2.13 kB
TypeScript
/// <reference types="react" />
import { CommentProps } from './type';
declare const Comment: {
({ as, className, children, ...props }: CommentProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
Group: {
({ as, className, children, ...props }: import("./type").CommentGroupProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
};
Avatar: {
({ as, src, className, children, ...props }: import("./type").CommentAvatarProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
};
Content: {
({ as, className, children, ...props }: import("./type").CommentContentProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
};
Author: {
({ as, className, content, children, ...props }: import("./type").CommentAuthorProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
};
Metadata: {
({ as, className, content, children, ...props }: import("./type").CommentMetadataProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
};
Text: {
({ as, className, content, children, ...props }: import("./type").CommentTextProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
};
Actions: {
({ as, className, children, ...props }: import("./type").CommentActionsProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
};
Action: {
({ as, className, content, children, ...props }: import("./type").CommentActionProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
};
};
export default Comment;