mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-03 05:24:40 -05:00
182e9859ec
[web] Welcome page migration GitOrigin-RevId: 2469786372df24d579d1987cf5bb1113450e9d78
22 lines
496 B
TypeScript
22 lines
496 B
TypeScript
import { Table as BS5Table } from 'react-bootstrap-5'
|
|
import classnames from 'classnames'
|
|
|
|
function Table({ responsive, ...rest }: React.ComponentProps<typeof BS5Table>) {
|
|
const content = (
|
|
<div
|
|
className={classnames('table-container', {
|
|
'table-container-bordered': rest.bordered,
|
|
})}
|
|
>
|
|
<BS5Table {...rest} />
|
|
</div>
|
|
)
|
|
|
|
if (responsive) {
|
|
return <div className="table-responsive d-flex">{content}</div>
|
|
}
|
|
|
|
return content
|
|
}
|
|
|
|
export default Table
|