1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-04-18 22:08:27 +00:00
thatmattlove-hyperglass/hyperglass/ui/components/Table/TableBody.tsx
2020-11-03 01:51:41 -07:00

15 lines
337 B
TypeScript

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