import { clsx } from "clsx";
import { HTMLAttributes, TdHTMLAttributes, ThHTMLAttributes } from "react";
export function Table({ className, children, ...props }: HTMLAttributes) {
return (
);
}
export function Thead({ className, children, ...props }: HTMLAttributes) {
return (
{children}
);
}
export function Tbody({ className, children, ...props }: HTMLAttributes) {
return (
{children}
);
}
export function Tr({ className, children, ...props }: HTMLAttributes) {
return (
{children}
);
}
export function Th({ className, children, ...props }: ThHTMLAttributes) {
return (
{children}
|
);
}
export function Td({ className, children, ...props }: TdHTMLAttributes) {
return (
{children}
|
);
}