mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-23 02:38:06 +00:00
15 lines
350 B
TypeScript
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}
|
|
/>
|
|
);
|