import { type ComponentProps, type PropsWithChildren } from 'react' import { GlassPanel } from 'ui-patterns/GlassPanel' import MenuIconPicker from '~/components/Navigation/NavigationMenu/MenuIconPicker' type GlassPanelWithIconPickerProps = PropsWithChildren< Omit, 'icon'> & { icon: string } > function GlassPanelWithIconPicker({ children, icon, ...props }: GlassPanelWithIconPickerProps) { return ( } {...props}> {children} ) } export { GlassPanelWithIconPicker }