{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "table", "title": "Table", "description": "A component for displaying tabular data with customizable styles", "dependencies": ["clsx", "tailwind-merge"], "files": [ { "path": "src/registry/thornberry/components/table.tsx", "content": "import { cn } from \"@/lib/utils\";\n\nimport type { ComponentProps } from \"react\";\n\ninterface TableProps extends ComponentProps<\"table\"> {\n containerProps?: string;\n}\n\nconst Table = ({ containerProps, className, ...rest }: TableProps) => (\n