Upgrade documents

Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
This commit is contained in:
Sacha Al Himdani
2025-09-16 09:51:17 +02:00
parent ce613ca453
commit 04e3eb81a7
24 changed files with 1910 additions and 523 deletions

View File

@@ -35,17 +35,20 @@ export function Th({
children,
className,
width,
compact,
...props
}: {
className?: string;
width?: number;
colspan?: number;
compact?: boolean;
} & ThHTMLAttributes<HTMLTableCellElement>) {
return (
<th
{...props}
className={clsx(
"first:pl-6 last:pr-6 py-3 whitespace-nowrap",
"first:pl-6 last:pr-6 whitespace-nowrap",
compact ? "py-1" : "py-3",
className,
)}
style={{ width }}