@xylabs/react-appbar
Version:
Common React library for all XY Labs projects that use React
12 lines • 404 B
TypeScript
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;
}
//# sourceMappingURL=NavListItemProps.d.ts.map