Skip to content

Commit

Permalink
email tranformer docs
Browse files Browse the repository at this point in the history
  • Loading branch information
evisdrenova committed Nov 13, 2023
1 parent 77210d7 commit 9bf9dab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/components/CustomTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ const Table = React.forwardRef<
HTMLTableElement,
React.HTMLAttributes<HTMLTableElement>
>(({ className, ...props }, ref) => (
<div className="relative w-full overflow-auto">
<div className="flex overflow-auto">
<table
ref={ref}
className={cn('w-full caption-bottom text-sm', className)}
className={cn('caption-bottom text-sm', className)}
{...props}
/>
</div>
Expand Down

0 comments on commit 9bf9dab

Please sign in to comment.