UNPKG

razor-shared-library

Version:
13 lines (12 loc) 317 B
import { ReactNode } from 'react'; type LoginItem = { label: string; icon: ReactNode; onClick: () => void; }; interface LoginSwitchProps { items: LoginItem[]; title: string; } export declare function Account({ items, title }: LoginSwitchProps): import("react/jsx-runtime").JSX.Element; export {};