import { cn } from "@minmon/ui/lib/utils";
import * as React from "react";
function Table({ className, ...props }: React.ComponentProps<"table">) {
return
;
}
function TableWrapper({ className, ...props }: React.ComponentProps<"div">) {
return ;
}
function TableHeader({ className, ...props }: React.ComponentProps<"thead">) {
return ;
}
function TableBody({ className, ...props }: React.ComponentProps<"tbody">) {
return ;
}
function TableRow({ className, ...props }: React.ComponentProps<"tr">) {
return
;
}
function TableHead({ className, scope = "col", ...props }: React.ComponentProps<"th">) {
return (
|
);
}
function TableCell({ className, ...props }: React.ComponentProps<"td">) {
return | ;
}
function TableCaption({ className, ...props }: React.ComponentProps<"caption">) {
return ;
}
export {
Table,
TableBody,
TableCaption,
TableCell,
TableHead,
TableHeader,
TableRow,
TableWrapper,
};