import React from 'react'; import { cn } from '@/lib/utils'; export const IpadSidebarResizeHandle: React.FC<{ side: 'left' | 'right'; isResizing: boolean; ariaLabel: string; handleProps: React.HTMLAttributes; }> = ({ side, isResizing, ariaLabel, handleProps }) => (
);