UNPKG

@xylabs/react-appbar

Version:

Common React library for all XY Labs projects that use React

13 lines (11 loc) 338 B
import type { ListItemProps, ListItemTextProps } from '@mui/material' import type { ReactNode } from 'react' import type { To } from 'react-router-dom' export interface NavListItemProps { href?: string icon?: ReactNode onButtonClick?: ListItemProps['onClick'] primary: ListItemTextProps['primary'] to?: To tooltip?: string }