import { cn } from '@/lib/utils'; import { Plus } from 'lucide-react'; interface InlineReviewGutterCellProps { lineNumber: number | null; type: 'add' | 'remove' | 'context' | 'header' | null; hasComments: boolean; canComment: boolean; onClick?: () => void; } export function InlineReviewGutterCell({ lineNumber, type, hasComments, canComment, onClick, }: InlineReviewGutterCellProps) { return (
{lineNumber != null ? lineNumber : ''} {canComment && ( )} {hasComments && ( )}
); }