import clsx from "clsx"; import React from "react"; type Props = React.ComponentProps<"table"> & {}; export const FULL_WIDTH_TABLE_VARIABLE_NAME = "preferred-full-table-width"; export const Table = (props: Props) => (
); export const FullTable = ({ children }: React.PropsWithChildren<{}>) => { return
{children}
; };