Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { Table as ChakraTable } from "@chakra-ui/react"
export const Table = (props: ChakraTable.RootProps) => {
return (
<ChakraTable.Root
native
size="sm"
variant="line"
{...props}
css={{
marginTop: "2em",
marginBottom: "2em",
}}
/>
)
}