import { sanitizeComposedHostProps, type SafeComposedHostElementProps } from "../primitives/sanitize-composed-host-props"; import { cn } from "../../lib/utils"; import { } from "../primitives"; function Table({ className, ...props }: SafeComposedHostElementProps<"table">) { return (
); } function TableHeader({ className, ...props }: SafeComposedHostElementProps<"thead">) { return ( ); } function TableBody({ className, ...props }: SafeComposedHostElementProps<"tbody">) { return ( ); } function TableFooter({ className, ...props }: SafeComposedHostElementProps<"tfoot">) { return ( tr]:last:border-b-0", className, )} {...sanitizeComposedHostProps(props)} /> ); } function TableRow({ className, ...props }: SafeComposedHostElementProps<"tr">) { return ( ); } function TableHead({ className, ...props }: SafeComposedHostElementProps<"th">) { return (
); } function TableCell({ className, ...props }: SafeComposedHostElementProps<"td">) { return ( ); } function TableCaption({ className, ...props }: SafeComposedHostElementProps<"caption">) { return (
); } export { Table, TableHeader, TableBody, TableFooter, TableHead, TableRow, TableCell, TableCaption, };