(
({ children, icon, position = 'start', className, ...otherProps }, ref) => {
return (
clsx(
menuItemIcon,
{
end: position === 'end',
start: position === 'start',
},
className
),
[className, position]
)}
{...otherProps}
>
{icon || children}
);
}
);
MenuIcon.displayName = 'MenuIcon';