overleaf/services/web/frontend/js/features/ui/components/bootstrap-5/table.tsx
ilkin-overleaf c3ed95bc48 Merge pull request #19027 from overleaf/ii-bs5-projects-list-table
[web] BS5 projects table migration

GitOrigin-RevId: 237bd8113c68d7fd1b66712f7361eb956b1e10e7
2024-07-15 09:03:45 +00:00

40 lines
789 B
TypeScript

import { Table as BS5Table } from 'react-bootstrap-5'
import classnames from 'classnames'
export function TableContainer({
responsive,
bordered,
children,
}: React.ComponentProps<typeof BS5Table>) {
return (
<div
className={classnames('table-container', {
'table-container-bordered': bordered,
'table-responsive': responsive,
})}
>
{children}
</div>
)
}
type TableProps = React.ComponentProps<typeof BS5Table> & {
container?: boolean
}
function Table({
container = true,
responsive,
bordered,
...rest
}: TableProps) {
return container ? (
<TableContainer responsive={responsive} bordered={bordered}>
<BS5Table {...rest} />
</TableContainer>
) : (
<BS5Table {...rest} />
)
}
export default Table