1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00
Files
checktheroads-hyperglass/hyperglass/ui/components/Table/TableBody.js
2020-07-05 17:20:10 -07:00

21 lines
400 B
JavaScript

/** @jsx jsx */
import { jsx } from "@emotion/core";
import { Box, css } from "@chakra-ui/core";
const TableBody = ({ children, ...props }) => (
<Box
as="tbody"
overflowY="scroll"
css={css({
"&::-webkit-scrollbar": { display: "none" },
"&": { msOverflowStyle: "none" }
})}
overflowX="hidden"
{...props}
>
{children}
</Box>
);
export default TableBody;