GodUIGodUI
109Follow on X

Click a pin to open its thread.

AR
Ana Reyes2m

Can we tighten this spacing?

MB
Marco Bell1m

Agreed — bumping to 8px.

Comment Pin

tsx
import { CommentPin } from "@/components/godui/comment-pin";export function CommentPinDemo() {return (  <div className="relative h-96">    <CommentPin      x={16}      y={20}      defaultOpen      comments={[        { id: "c1", author: "Ana Reyes", body: "Can we tighten this spacing?", time: "2m" },        { id: "c2", author: "Marco Bell", body: "Agreed — bumping to 8px.", time: "1m" },      ]}      onReply={(text) => console.log(text)}    />  </div>);}