mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-04-18 22:08:27 +00:00
15 lines
337 B
TypeScript
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}
|
|
/>
|
|
);
|