fix: harden kumo base component styling

This commit is contained in:
2026-07-02 10:21:25 -07:00
parent 04f2dfc229
commit c394d85236
9 changed files with 234 additions and 13 deletions

View File

@@ -47,7 +47,7 @@ const TableRoot = React.forwardRef<HTMLTableElement, TableProps>(function Table(
return (
<table
ref={ref}
className={cn("border-collapse text-kumo-default", layout === "fixed" && "table-fixed", className)}
className={cn("teatea-table border-collapse text-kumo-default", layout === "fixed" && "table-fixed", className)}
{...props}
/>
);