1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-04-21 07:18:29 +00:00
thatmattlove-hyperglass/hyperglass/ui/components/table/body.tsx
2021-01-01 11:32:35 -07:00

16 lines
340 B
TypeScript

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