import { useTheme } from '@emotion/react'; import { IconChevronRight } from '@/ui/icon'; import { IconComponent } from '@/ui/icon/types/IconComponent'; import { MenuItemLeftContent } from '../internals/components/MenuItemLeftContent'; import { StyledMenuItemBase, StyledMenuItemLeftContent, } from '../internals/components/StyledMenuItemBase'; export type MenuItemNavigateProps = { LeftIcon?: IconComponent; text: string; onClick?: () => void; className?: string; }; export const MenuItemNavigate = ({ LeftIcon, text, className, onClick, }: MenuItemNavigateProps) => { const theme = useTheme(); return ( ); };