aura-glass
Version:
A comprehensive glassmorphism design system for React applications with 142+ production-ready components
15 lines • 567 B
TypeScript
import React from "react";
export interface Comment {
id: string;
author: string;
text: string;
createdAt?: string;
replies?: Comment[];
}
export interface GlassCommentThreadProps extends React.HTMLAttributes<HTMLDivElement> {
comments: Comment[];
onReply?: (parentId: string, text: string) => void;
}
export declare function GlassCommentThread({ comments, onReply, className, ...props }: GlassCommentThreadProps): import("react/jsx-runtime").JSX.Element;
export default GlassCommentThread;
//# sourceMappingURL=GlassCommentThread.d.ts.map