import { NavigationDrawerItem, NavigationDrawerItemProps, } from '@/ui/navigation/navigation-drawer/components/NavigationDrawerItem'; type NavigationDrawerSubItemProps = NavigationDrawerItemProps; export const NavigationDrawerSubItem = ({ className, label, objectName, Icon, to, onClick, active, danger, soon, count, keyboard, subItemState, rightOptions, isDragging, }: NavigationDrawerSubItemProps) => { return ( ); };