lookingglass/hyperglass/ui/components/table/body.tsx
2021-12-17 21:08:45 -07:00

15 lines
350 B
TypeScript

import { chakra } from '@chakra-ui/react';
import type { BoxProps } from '@chakra-ui/react';
export const TableBody = (props: BoxProps): JSX.Element => (
<chakra.tbody
overflowY="scroll"
css={{
'&::-webkit-scrollbar': { display: 'none' },
'&': { msOverflowStyle: 'none' },
}}
overflowX="hidden"
{...props}
/>
);