We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec629b0 commit 8657588Copy full SHA for 8657588
site/src/components/Table/Table.tsx
@@ -15,7 +15,7 @@ export const Table = React.forwardRef<
15
<table
16
ref={ref}
17
className={cn(
18
- "w-full caption-bottom text-xs font-medium text-content-secondary border-separate border-spacing-0",
+ "w-full caption-bottom text-xs font-medium text-content-secondary border-separate border-border border-spacing-0",
19
className,
20
)}
21
{...props}
@@ -85,7 +85,7 @@ const tableRowVariants = cva(
85
export const TableRow = React.forwardRef<
86
HTMLTableRowElement,
87
React.HTMLAttributes<HTMLTableRowElement> &
88
- VariantProps<typeof tableRowVariants>
+ VariantProps<typeof tableRowVariants>
89
>(({ className, hover, ...props }, ref) => (
90
<tr
91
0 commit comments