@stanfordspezi/spezi-web-design-system
Version:
Stanford Biodesign Digital Health Spezi Web Design System
9 lines (8 loc) • 321 B
TypeScript
import { ButtonProps } from '../../components/Button';
import { Nil } from '../../utils/misc';
type UserMenuItemProps = Omit<ButtonProps, "name"> & {
name: Nil<string>;
img: Nil<string>;
};
export declare const UserMenuItem: ({ name, img, ...props }: UserMenuItemProps) => import("react").JSX.Element;
export {};