mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-29 07:43:38 -05:00
4138f9707a
Migrate history versions list to Bootstrap 5 GitOrigin-RevId: 4e006ad353cb11eadaefb2df41d2b8591003c664
37 lines
990 B
TypeScript
37 lines
990 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.leadingIcon ? (
|
|
<>
|
|
{rest.leadingIcon}
|
|
|
|
{rest.children}
|
|
</>
|
|
) : (
|
|
rest.children
|
|
),
|
|
onClick: rest.onClick,
|
|
href: rest.href,
|
|
download: rest.download,
|
|
...bs3Props,
|
|
}
|
|
|
|
return (
|
|
<BootstrapVersionSwitcher
|
|
bs3={<MenuItem {...bs3MenuItemProps} />}
|
|
bs5={<DropdownItem {...rest} />}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export default OLDropdownMenuItem
|