import { WithChildren, WithClassName } from '@/hooks/Mapper/types/common.ts'; import clsx from 'clsx'; type WdMenuItemProps = { icon?: string; disabled?: boolean } & WithChildren & WithClassName; export const WdMenuItem = ({ children, icon, disabled, className }: WdMenuItemProps) => { return ( {icon &&
}
{children}
); };