import { type ComponentProps } from 'react' import { IconPanel } from 'ui-patterns/IconPanel' import MenuIconPicker from '~/components/Navigation/NavigationMenu/MenuIconPicker' type IconPanelWithIconPickerProps = Omit, 'icon'> & { icon: string } function IconPanelWithIconPicker({ icon, ...props }: IconPanelWithIconPickerProps) { return } {...props} /> } export { IconPanelWithIconPicker }