ds-smart-ui
Version:
Smart UI is a React component library that helps you build accessible and responsive web applications.
13 lines (11 loc) • 318 B
TypeScript
type User = {
name: string;
};
export interface HeaderProps {
user?: User;
onLogin?: () => void;
onLogout?: () => void;
onCreateAccount?: () => void;
}
export declare const Header: ({ user, onLogin, onLogout, onCreateAccount, }: HeaderProps) => import("react/jsx-runtime").JSX.Element;
export {};