mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
0e71084600
[web] BS5 project tools GitOrigin-RevId: 3181c62985b6db4051292b484f53178a0736fa75
27 lines
812 B
TypeScript
27 lines
812 B
TypeScript
import { MenuItem, MenuItemProps } from 'react-bootstrap'
|
|
import { DropdownItem } from '@/features/ui/components/bootstrap-5/dropdown-menu'
|
|
import { DropdownItemProps } from '@/features/ui/components/types/dropdown-menu-props'
|
|
import BootstrapVersionSwitcher from '@/features/ui/components/bootstrap-5/bootstrap-version-switcher'
|
|
|
|
type OlDropdownMenuItemProps = DropdownItemProps & {
|
|
bs3Props?: MenuItemProps
|
|
}
|
|
|
|
function OlDropdownMenuItem(props: OlDropdownMenuItemProps) {
|
|
const { bs3Props, ...rest } = props
|
|
|
|
const bs3MenuItemProps: MenuItemProps = {
|
|
children: rest.children,
|
|
onClick: rest.onClick,
|
|
...bs3Props,
|
|
}
|
|
|
|
return (
|
|
<BootstrapVersionSwitcher
|
|
bs3={<MenuItem {...bs3MenuItemProps} />}
|
|
bs5={<DropdownItem {...rest} />}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export default OlDropdownMenuItem
|