overleaf-cep/services/web/frontend/js/features/ui/components/bootstrap-5/table.tsx
Tim Down 5c4cb50628 Merge pull request #24988 from overleaf/td-bs5-upgrade-and-rename
Apply minor upgrades to Bootstrap 5 and react-bootstrap

GitOrigin-RevId: eb013f38515ebd4b9572d139f00841aca344e3c6
2025-05-16 08:05:28 +00:00

43 lines
861 B
TypeScript

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