import React from "react";
export function RawTable({ id, className, style, children }) {
    return (<table id={id} className={className} style={{ borderCollapse: "collapse", ...style }}>
      {children}
    </table>);
}
//# sourceMappingURL=Table.jsx.map